mesa: replace >= with > when testing if we've exceeded max local params
Now a program that uses 256 locals works as it should.
This commit is contained in:
@@ -1929,10 +1929,10 @@ parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
|
||||
|
||||
/* Make sure we haven't blown past our parameter limits */
|
||||
if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
|
||||
(Program->Base.NumParameters >=
|
||||
(Program->Base.NumParameters >
|
||||
ctx->Const.VertexProgram.MaxLocalParams))
|
||||
|| ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
|
||||
&& (Program->Base.NumParameters >=
|
||||
&& (Program->Base.NumParameters >
|
||||
ctx->Const.FragmentProgram.MaxLocalParams))) {
|
||||
program_error(ctx, Program->Position, "Too many parameter variables");
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user