mesa/main: Added empty skeleton of glGetInternalformati64v
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
committed by
Eduardo Lima Mitev
parent
2453bba504
commit
b5d27bc5dd
@@ -834,3 +834,19 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname,
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetInternalformati64v(GLenum target, GLenum internalformat,
|
||||
GLenum pname, GLsizei bufSize, GLint64 *params)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
||||
|
||||
if (!_mesa_has_ARB_internalformat_query2(ctx)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "glGetInternalformati64v");
|
||||
return;
|
||||
}
|
||||
|
||||
_mesa_debug(ctx, "glGetInternalformati64v() not implemented");
|
||||
}
|
||||
|
||||
@@ -41,4 +41,8 @@ extern void GLAPIENTRY
|
||||
_mesa_GetInternalformativ(GLenum target, GLenum internalformat,
|
||||
GLenum pname, GLsizei bufSize, GLint *params);
|
||||
|
||||
extern void GLAPIENTRY
|
||||
_mesa_GetInternalformati64v(GLenum target, GLenum internalformat,
|
||||
GLenum pname, GLsizei bufSize, GLint64 *params);
|
||||
|
||||
#endif /* FORMATQUERY_H */
|
||||
|
||||
Reference in New Issue
Block a user