mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 18:20:10 +01:00
mesa/main: Added empty skeleton of glGetInternalformati64v
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
2453bba504
commit
b5d27bc5dd
2 changed files with 20 additions and 0 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue