Module: Mesa Branch: master Commit: 9aa02a205d886b27325428785a63be7f8b8ae5ec URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9aa02a205d886b27325428785a63be7f8b8ae5ec
Author: Eric Anholt <[email protected]> Date: Tue Jan 22 17:36:53 2013 -0800 i965: Drop debug check for knowing the size of a type. This was added in b93684f5f311f89c965960ab42bfea71a397b180, but there's no need for it -- get_size has to succeed, and it has an assert for us in debug builds. Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_draw_upload.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c index 31282dd..43848f7 100644 --- a/src/mesa/drivers/dri/i965/brw_draw_upload.c +++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c @@ -449,8 +449,7 @@ static void brw_prepare_vertices(struct brw_context *brw) struct brw_vertex_element *input = &brw->vb.inputs[i]; vs_inputs &= ~BITFIELD64_BIT(i); - if (input->glarray->Size && get_size(input->glarray->Type)) - brw->vb.enabled[brw->vb.nr_enabled++] = input; + brw->vb.enabled[brw->vb.nr_enabled++] = input; } if (brw->vb.nr_enabled == 0) _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
