From 99bc0497453b79beea42a6d6986b1282d9137706 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 2 Jul 2015 00:08:17 +0200 Subject: vo_opengl: remove unused GL API functions --- video/out/gl_common.c | 1 - video/out/gl_common.h | 3 --- 2 files changed, 4 deletions(-) (limited to 'video') 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); -- cgit v1.2.3