summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-02 00:08:17 +0200
committerwm4 <wm4@nowhere>2015-07-02 00:08:17 +0200
commit99bc0497453b79beea42a6d6986b1282d9137706 (patch)
tree03790ab6553acbf7d0eb355835e1c27cb32a09c8 /video
parent6afef5839f009654bded01dfc0e5874a09058a19 (diff)
downloadmpv-99bc0497453b79beea42a6d6986b1282d9137706.tar.bz2
mpv-99bc0497453b79beea42a6d6986b1282d9137706.tar.xz
vo_opengl: remove unused GL API functions
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_common.c1
-rw-r--r--video/out/gl_common.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/video/out/gl_common.c b/video/out/gl_common.c
index 4a95480839..7cc54980fa 100644
--- a/video/out/gl_common.c
+++ b/video/out/gl_common.c
@@ -142,7 +142,6 @@ static const struct gl_functions gl_functions[] = {
DEF_FN(Flush),
DEF_FN(GenBuffers),
DEF_FN(GenTextures),
- DEF_FN(GetBooleanv),
DEF_FN(GetAttribLocation),
DEF_FN(GetError),
DEF_FN(GetIntegerv),
diff --git a/video/out/gl_common.h b/video/out/gl_common.h
index f163e4fd28..a48ce93968 100644
--- a/video/out/gl_common.h
+++ b/video/out/gl_common.h
@@ -182,8 +182,6 @@ struct GL {
void (GLAPIENTRY *Clear)(GLbitfield);
void (GLAPIENTRY *GenTextures)(GLsizei, GLuint *);
void (GLAPIENTRY *DeleteTextures)(GLsizei, const GLuint *);
- void (GLAPIENTRY *Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
- void (GLAPIENTRY *Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
void (GLAPIENTRY *ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
void (GLAPIENTRY *Enable)(GLenum);
void (GLAPIENTRY *Disable)(GLenum);
@@ -202,7 +200,6 @@ struct GL {
const GLvoid *);
void (GLAPIENTRY *TexParameteri)(GLenum, GLenum, GLint);
void (GLAPIENTRY *GetIntegerv)(GLenum, GLint *);
- void (GLAPIENTRY *GetBooleanv)(GLenum, GLboolean *);
void (GLAPIENTRY *ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum,
GLenum, GLvoid *);
void (GLAPIENTRY *ReadBuffer)(GLenum);