mesa: refine the error checking vbo_exec_DrawRangeElements()
authorBrian Paul <brianp@vmware.com>
Mon, 21 Sep 2009 20:23:07 +0000 (14:23 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 21 Sep 2009 20:25:39 +0000 (14:25 -0600)
commit2655d437569c5bce7c56782792cbd4460b9f758b
treee19deca60018f36c6a55f85ab1083297d0cf7da1
parent44d260329efaea2bc844afa42fb1b4f882ab74fd
mesa: refine the error checking vbo_exec_DrawRangeElements()

If the 'end' index is out of bounds issue a warning as before.  But instead
of just no-op'ing the draw call, examine the actual array indices to see
if they're OK.  If the max array index is out of bounds, issue another
warning and no-op the draw call.  Otherwise, draw normally.  This is a
debug build-only feature since it could impact performance.

This "fixes" the missing torus in the OGL Distilled / Picking demo.
src/mesa/vbo/vbo_exec_array.c