Revert "mesa: assert that key->fragprog_inputs_read value isn't too large"
authorBrian Paul <brianp@vmware.com>
Fri, 9 Nov 2012 21:35:07 +0000 (14:35 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 9 Nov 2012 23:31:22 +0000 (16:31 -0700)
This reverts commit 0d61f879a1f2e6bb37368731a29d5267e1c25195.

Assigning the FS inputs to the 12 bit field is fine since we don't care
about the higher FS inputs.  Maybe I'll revisit silencing the compiler
warning another day.

src/mesa/main/ffvertex_prog.c

index 4cdec216696245c4a33dca000e19bbf30c975910..efdca015e99c7407a3c5d2a2cf08ba9dfa58359c 100644 (file)
@@ -160,8 +160,6 @@ static void make_state_key( struct gl_context *ctx, struct state_key *key )
 
    key->need_eye_coords = ctx->_NeedEyeCoords;
 
-   /* Make sure fp->Base.InputsRead fits in a 12-bit field */
-   assert(fp->Base.InputsRead < (1 << 12));
    key->fragprog_inputs_read = fp->Base.InputsRead;
    key->varying_vp_inputs = ctx->varying_vp_inputs;