diff options
author | Eric Anholt <[email protected]> | 2012-12-06 11:31:31 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-12-11 10:11:44 -0800 |
commit | 7d404a4bd8feb1a6575774d8eec7bc993c8e095e (patch) | |
tree | c74d8f29e56e45230161f7a692a82d6ed9622143 /src/mesa/drivers/dri | |
parent | cb8300f5a98016ccc8d34f1bbfee9eb319a2a8a8 (diff) |
i965: Remove bogus flag_reg_nr field from bits3.
There's a flag subreg nr field in bits2 next to src0.vertstride, but
there shouldn't be anything in bits3 next to src1.vertstride.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_structs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_structs.h b/src/mesa/drivers/dri/i965/brw_structs.h index 26def6e9054..64bc1611832 100644 --- a/src/mesa/drivers/dri/i965/brw_structs.h +++ b/src/mesa/drivers/dri/i965/brw_structs.h @@ -1184,8 +1184,7 @@ struct brw_instruction GLuint src1_horiz_stride:2; GLuint src1_width:3; GLuint src1_vert_stride:4; - GLuint flag_reg_nr:1; - GLuint pad1:6; + GLuint pad1:7; } ia1; struct @@ -1201,8 +1200,7 @@ struct brw_instruction GLuint src1_swz_w:2; GLuint pad1:1; GLuint src1_vert_stride:4; - GLuint flag_reg_nr:1; - GLuint pad2:6; + GLuint pad2:7; } ia16; |