mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
mesa: added GL_MAX_SAMPLES query for GL_ARB_fbo
This commit is contained in:
parent
4fc16fb7e9
commit
515c118a7e
2 changed files with 17 additions and 1 deletions
|
|
@ -1905,6 +1905,10 @@ _mesa_GetBooleanv( GLenum pname, GLboolean *params )
|
|||
CHECK_EXT1(ARB_shader_objects, "GetBooleanv");
|
||||
params[0] = INT_TO_BOOLEAN(ctx->Shader.CurrentProgram ? ctx->Shader.CurrentProgram->Name : 0);
|
||||
break;
|
||||
case GL_MAX_SAMPLES:
|
||||
CHECK_EXT1(ARB_framebuffer_object, "GetBooleanv");
|
||||
params[0] = INT_TO_BOOLEAN(ctx->Const.MaxSamples);
|
||||
break;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetBooleanv(pname=0x%x)", pname);
|
||||
}
|
||||
|
|
@ -3753,6 +3757,10 @@ _mesa_GetFloatv( GLenum pname, GLfloat *params )
|
|||
CHECK_EXT1(ARB_shader_objects, "GetFloatv");
|
||||
params[0] = (GLfloat)(ctx->Shader.CurrentProgram ? ctx->Shader.CurrentProgram->Name : 0);
|
||||
break;
|
||||
case GL_MAX_SAMPLES:
|
||||
CHECK_EXT1(ARB_framebuffer_object, "GetFloatv");
|
||||
params[0] = (GLfloat)(ctx->Const.MaxSamples);
|
||||
break;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetFloatv(pname=0x%x)", pname);
|
||||
}
|
||||
|
|
@ -5601,6 +5609,10 @@ _mesa_GetIntegerv( GLenum pname, GLint *params )
|
|||
CHECK_EXT1(ARB_shader_objects, "GetIntegerv");
|
||||
params[0] = ctx->Shader.CurrentProgram ? ctx->Shader.CurrentProgram->Name : 0;
|
||||
break;
|
||||
case GL_MAX_SAMPLES:
|
||||
CHECK_EXT1(ARB_framebuffer_object, "GetIntegerv");
|
||||
params[0] = ctx->Const.MaxSamples;
|
||||
break;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetIntegerv(pname=0x%x)", pname);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1009,7 +1009,11 @@ StateVars = [
|
|||
# close enough for now.
|
||||
( "GL_CURRENT_PROGRAM", GLint,
|
||||
["ctx->Shader.CurrentProgram ? ctx->Shader.CurrentProgram->Name : 0"],
|
||||
"", ["ARB_shader_objects"] )
|
||||
"", ["ARB_shader_objects"] ),
|
||||
|
||||
# GL_ARB_framebuffer_object
|
||||
( "GL_MAX_SAMPLES", GLint, ["ctx->Const.MaxSamples"], "",
|
||||
["ARB_framebuffer_object"] )
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue