diff options
author | Brian Paul <[email protected]> | 2011-03-11 09:25:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-03-11 09:25:22 -0700 |
commit | e0e94026a0648d6b33d6b7cf2b9b01429cf945e4 (patch) | |
tree | 516fd694c002e29ff6183d6064111b7bf88e3eb2 /src/mesa/main/shaderapi.c | |
parent | 8cc84b3e454cf03c71282322e988f03bc4a1baa3 (diff) |
mesa: move location of some geometry program limits
The gl_program_constants struct is for limits that are applicable to
any/all shader stages. Move the geometry shader-only fields into the
gl_constants struct.
Remove redundant MaxGeometryUniformComponents field too.
Diffstat (limited to 'src/mesa/main/shaderapi.c')
-rw-r--r-- | src/mesa/main/shaderapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index 6650613d28d..2c5f2a147ce 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -1732,7 +1732,7 @@ _mesa_ProgramParameteriARB(GLuint program, GLenum pname, switch (pname) { case GL_GEOMETRY_VERTICES_OUT_ARB: if (value < 1 || - (unsigned) value > ctx->Const.GeometryProgram.MaxGeometryOutputVertices) { + (unsigned) value > ctx->Const.MaxGeometryOutputVertices) { _mesa_error(ctx, GL_INVALID_VALUE, "glProgramParameteri(GL_GEOMETRY_VERTICES_OUT_ARB=%d", value); |