diff options
Diffstat (limited to 'src/jogl/native/libav/ffmpeg_tool.h')
-rw-r--r-- | src/jogl/native/libav/ffmpeg_tool.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jogl/native/libav/ffmpeg_tool.h b/src/jogl/native/libav/ffmpeg_tool.h index 852ff8d1e..be186d818 100644 --- a/src/jogl/native/libav/ffmpeg_tool.h +++ b/src/jogl/native/libav/ffmpeg_tool.h @@ -65,6 +65,9 @@ typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLi typedef GLenum (APIENTRYP PFNGLGETERRORPROC) (void); typedef void (APIENTRYP PFNGLFLUSH) (void); typedef void (APIENTRYP PFNGLFINISH) (void); +typedef void (APIENTRYP PFNGLENABLE) (GLenum cap); +typedef void (APIENTRYP PFNGLBINDTEXTURE) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLACTIVETEXTURE) (GLenum texture); /** * AV_TIME_BASE 1000000 @@ -150,6 +153,8 @@ typedef struct { PFNGLGETERRORPROC procAddrGLGetError; PFNGLFLUSH procAddrGLFlush; PFNGLFINISH procAddrGLFinish; + PFNGLENABLE procAddrGLEnable; + PFNGLBINDTEXTURE procAddrGLBindTexture; AVPacket* packet; AVFormatContext* pFormatCtx; |