summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-04-08 13:36:11 +0200
committerwm4 <wm4@nowhere>2017-04-08 16:43:56 +0200
commit71caa0b79b1ff3dd4e8ff7aeaec9301aa0704ee2 (patch)
treee1d70c6f3c79cb3fab262d47e9163db14a17c81e
parentbb3e152fdce1f22e609e59a9bbbeb14aa76e25a4 (diff)
downloadmpv-71caa0b79b1ff3dd4e8ff7aeaec9301aa0704ee2.tar.bz2
mpv-71caa0b79b1ff3dd4e8ff7aeaec9301aa0704ee2.tar.xz
vo_opengl: remove two unused symbols
-rw-r--r--video/out/opengl/utils.c1
-rw-r--r--video/out/opengl/utils.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/video/out/opengl/utils.c b/video/out/opengl/utils.c
index 36e63e03ff..c080f71299 100644
--- a/video/out/opengl/utils.c
+++ b/video/out/opengl/utils.c
@@ -458,7 +458,6 @@ struct sc_entry {
int num_uniforms;
bstr frag;
bstr vert;
- struct gl_vao *vao;
};
struct gl_shader_cache {
diff --git a/video/out/opengl/utils.h b/video/out/opengl/utils.h
index 9b57cb5296..aa936f6e35 100644
--- a/video/out/opengl/utils.h
+++ b/video/out/opengl/utils.h
@@ -171,7 +171,6 @@ void gl_sc_set_vao(struct gl_shader_cache *sc, struct gl_vao *vao);
void gl_sc_enable_extension(struct gl_shader_cache *sc, char *name);
void gl_sc_generate(struct gl_shader_cache *sc);
void gl_sc_reset(struct gl_shader_cache *sc);
-void gl_sc_unbind(struct gl_shader_cache *sc);
struct gl_timer;