diff options
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_state_upload.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index b38b61a874c..e3d4b5e067c 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -3464,10 +3464,8 @@ genX(upload_sbe)(struct brw_context *brw) #if GEN_GEN >= 9 /* prepare the active component dwords */ - const int num_inputs = urb_entry_read_length * 2; - for (int input_index = 0; input_index < num_inputs; input_index++) { - sbe.AttributeActiveComponentFormat[input_index] = ACTIVE_COMPONENT_XYZW; - } + for (int i = 0; i < 32; i++) + sbe.AttributeActiveComponentFormat[i] = ACTIVE_COMPONENT_XYZW; #endif } |