summaryrefslogtreecommitdiffstats
path: root/video/out/vo_opengl.c
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2015-08-29 04:12:56 +0200
committerwm4 <wm4@nowhere>2015-09-09 18:09:31 +0200
commit44eda2177d8facb1cd064c164b16e9027529d164 (patch)
tree7f3d77dd5aa4757fdd6e062cc6ff5613151afb3d /video/out/vo_opengl.c
parentdeebc55014074fef121c1df6b117e9c0bf97d516 (diff)
downloadmpv-44eda2177d8facb1cd064c164b16e9027529d164.tar.bz2
mpv-44eda2177d8facb1cd064c164b16e9027529d164.tar.xz
vo_opengl: remove gl_ prefixes from files in video/out/opengl
This is a bit redundant with the name of the directory itself, and not in line with existing naming conventions.
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r--video/out/vo_opengl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 484800a986..e41163be9c 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -42,14 +42,14 @@
#include "video/mp_image.h"
#include "sub/osd.h"
-#include "opengl/gl_common.h"
-#include "opengl/gl_utils.h"
-#include "opengl/gl_hwdec.h"
-#include "opengl/gl_osd.h"
+#include "opengl/common.h"
+#include "opengl/utils.h"
+#include "opengl/hwdec.h"
+#include "opengl/osd.h"
#include "filter_kernels.h"
#include "video/hwdec.h"
-#include "opengl/gl_video.h"
-#include "opengl/gl_lcms.h"
+#include "opengl/video.h"
+#include "opengl/lcms.h"
struct gl_priv {
struct vo *vo;