summaryrefslogtreecommitdiffstats
path: root/video/out/vo_opengl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-19 12:59:07 +0100
committerwm4 <wm4@nowhere>2015-12-19 14:14:12 +0100
commit6154c1d06d38bd236a0adb57556f7d871b75469b (patch)
treeb99c5a3a50411cdddfeb8a2d2d85660d8ed349c2 /video/out/vo_opengl.c
parent32cd85bc7ecfa74d3fefef5570e4ef546ae0643a (diff)
downloadmpv-6154c1d06d38bd236a0adb57556f7d871b75469b.tar.bz2
mpv-6154c1d06d38bd236a0adb57556f7d871b75469b.tar.xz
vo_opengl: split backend code from common.c to context.c
Now common.c only contains the code for the function loader, while context.c contains the backend loader/dispatcher. Not calling it "backend.c", because the central struct is called MPGLContext.
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r--video/out/vo_opengl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 068b004e5d..612cb79663 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -43,7 +43,7 @@
#include "video/mp_image.h"
#include "sub/osd.h"
-#include "opengl/common.h"
+#include "opengl/context.h"
#include "opengl/utils.h"
#include "opengl/hwdec.h"
#include "opengl/osd.h"