From: Brian Date: Thu, 22 Feb 2007 23:02:18 +0000 (-0700) Subject: fix assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fd89396012bf4e2f36315e79ee180f0ca4eaf32e;p=mesa.git fix assertion --- diff --git a/src/mesa/shader/nvvertexec.c b/src/mesa/shader/nvvertexec.c index cf7b3d448d1..7dc0edbd9e6 100644 --- a/src/mesa/shader/nvvertexec.c +++ b/src/mesa/shader/nvvertexec.c @@ -268,7 +268,7 @@ get_register_pointer( GLcontext *ctx, return machine->Inputs[source->Index]; case PROGRAM_OUTPUT: /* This is only needed for the PRINT instruction */ - ASSERT(source->Index < MAX_NV_VERTEX_PROGRAM_OUTPUTS); + ASSERT(source->Index < VERT_RESULT_MAX); return machine->Outputs[source->Index]; case PROGRAM_LOCAL_PARAM: ASSERT(source->Index < MAX_PROGRAM_LOCAL_PARAMS);