From: Eric Anholt Date: Wed, 23 Jan 2013 01:36:53 +0000 (-0800) Subject: i965: Drop debug check for knowing the size of a type. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9aa02a205d886b27325428785a63be7f8b8ae5ec;p=mesa.git 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 --- diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c index 31282ddddcb..43848f7dcbc 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)