diff options
author | Eric Anholt <[email protected]> | 2012-10-03 13:23:05 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-10-17 12:24:00 -0700 |
commit | 54679fcbcae7a2d41cb439e52e386bd811a291b4 (patch) | |
tree | e0bce67791fa46e6cf751e97653c8235249ae91b /src/mesa/drivers/dri/i965/brw_vec4.h | |
parent | 7abfb67dc42ec3a96443ed025807267646c56e86 (diff) |
i965: Share the predicate field between FS and VS.
Note that BRW_PREDICATE_NONE is 0 and BRW_PREDICATE_NORMAL is 1, so that's a
lot like the true/false we had in the FS before.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h index 8ab8431af53..bad6f20edda 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.h +++ b/src/mesa/drivers/dri/i965/brw_vec4.h @@ -171,8 +171,6 @@ public: src_reg src[3]; bool saturate; - bool predicate_inverse; - uint32_t predicate; int conditional_mod; /**< BRW_CONDITIONAL_* */ |