summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/hwdec_vdpau.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-04 19:09:46 +0200
committerwm4 <wm4@nowhere>2017-08-05 13:09:05 +0200
commitaac04c0d6496d8847499a94376e85f1711bf31d6 (patch)
treebf77bcd2d12729a3706804b29ba5951d173a3226 /video/out/opengl/hwdec_vdpau.c
parentfa4a1c46759136334646e47c627ddb75e532a658 (diff)
downloadmpv-aac04c0d6496d8847499a94376e85f1711bf31d6.tar.bz2
mpv-aac04c0d6496d8847499a94376e85f1711bf31d6.tar.xz
vo_opengl: split utils.c/h
Actually GL-specific parts go into gl_utils.c/h, the shader cache (gl_sc*) into shader_cache.c/h. No semantic changes of any kind, except that the VAO helper is made public again as part of gl_utils.c (all while the goal for gl_utils.c itself is to be included by GL-specific code).
Diffstat (limited to 'video/out/opengl/hwdec_vdpau.c')
-rw-r--r--video/out/opengl/hwdec_vdpau.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/hwdec_vdpau.c b/video/out/opengl/hwdec_vdpau.c
index 712997ed7a..9ddec18e06 100644
--- a/video/out/opengl/hwdec_vdpau.c
+++ b/video/out/opengl/hwdec_vdpau.c
@@ -21,7 +21,7 @@
#include <GL/glx.h>
#include "hwdec.h"
-#include "utils.h"
+#include "gl_utils.h"
#include "video/vdpau.h"
#include "video/vdpau_mixer.h"