# HG changeset patch # User reimar # Date 1367666119 0 # Node ID c4075d9e329d8cd785bfc487d4369ce027763579 # Parent 87653d6a0f4706058e90e95ebc834397cbec6157 Remove now unused function pointers. diff -r 87653d6a0f47 -r c4075d9e329d libvo/gl_common.c --- a/libvo/gl_common.c Sat May 04 11:13:58 2013 +0000 +++ b/libvo/gl_common.c Sat May 04 11:15:19 2013 +0000 @@ -51,8 +51,6 @@ void (GLAPIENTRY *mpglMatrixMode)(GLenum); void (GLAPIENTRY *mpglLoadIdentity)(void); void (GLAPIENTRY *mpglLoadMatrixf)(float *); -void (GLAPIENTRY *mpglPushMatrix)(void); -void (GLAPIENTRY *mpglPopMatrix)(void); void (GLAPIENTRY *mpglClear)(GLbitfield); GLuint (GLAPIENTRY *mpglGenLists)(GLsizei); void (GLAPIENTRY *mpglDeleteLists)(GLuint, GLsizei); @@ -425,8 +423,6 @@ DEF_FUNC_DESC(MatrixMode), DEF_FUNC_DESC(LoadIdentity), DEF_FUNC_DESC(LoadMatrixf), - DEF_FUNC_DESC(PushMatrix), - DEF_FUNC_DESC(PopMatrix), DEF_FUNC_DESC(Clear), DEF_FUNC_DESC(GenLists), DEF_FUNC_DESC(DeleteLists), diff -r 87653d6a0f47 -r c4075d9e329d libvo/gl_common.h --- a/libvo/gl_common.h Sat May 04 11:13:58 2013 +0000 +++ b/libvo/gl_common.h Sat May 04 11:15:19 2013 +0000 @@ -239,8 +239,6 @@ extern void (GLAPIENTRY *mpglMatrixMode)(GLenum); extern void (GLAPIENTRY *mpglLoadIdentity)(void); extern void (GLAPIENTRY *mpglLoadMatrixf)(float *); -extern void (GLAPIENTRY *mpglPushMatrix)(void); -extern void (GLAPIENTRY *mpglPopMatrix)(void); extern void (GLAPIENTRY *mpglClear)(GLbitfield); extern GLuint (GLAPIENTRY *mpglGenLists)(GLsizei); extern void (GLAPIENTRY *mpglDeleteLists)(GLuint, GLsizei);