From 19e6efc0ad0e937bd89c00967d06f54d987810bc Mon Sep 17 00:00:00 2001 From: Martin Peres Date: Mon, 16 Feb 2015 12:20:19 +0200 Subject: main: Added entry points for glGetQueryBufferObject* These entry points will be fleshed out when the GL_ARB_query_buffer_object extension gets implemented. In the meantime, return GL_INVALID_OPERATION as suggested by Ian. Reviewed-by: Laura Ekstrand Signed-off-by: Martin Peres --- src/mesa/main/queryobj.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/mesa/main/queryobj.h') diff --git a/src/mesa/main/queryobj.h b/src/mesa/main/queryobj.h index 431d420..d1036fc 100644 --- a/src/mesa/main/queryobj.h +++ b/src/mesa/main/queryobj.h @@ -79,5 +79,17 @@ void GLAPIENTRY _mesa_GetQueryObjecti64v(GLuint id, GLenum pname, GLint64EXT *params); void GLAPIENTRY _mesa_GetQueryObjectui64v(GLuint id, GLenum pname, GLuint64EXT *params); +void GLAPIENTRY +_mesa_GetQueryBufferObjectiv(GLuint id, GLuint buffer, GLenum pname, + GLintptr offset); +void GLAPIENTRY +_mesa_GetQueryBufferObjectuiv(GLuint id, GLuint buffer, GLenum pname, + GLintptr offset); +void GLAPIENTRY +_mesa_GetQueryBufferObjecti64v(GLuint id, GLuint buffer, GLenum pname, + GLintptr offset); +void GLAPIENTRY +_mesa_GetQueryBufferObjectui64v(GLuint id, GLuint buffer, GLenum pname, + GLintptr offset); #endif /* QUERYOBJ_H */ -- cgit v1.1