diff options
author | Kenneth Graunke <[email protected]> | 2014-06-28 18:20:50 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-06-30 14:05:27 -0700 |
commit | 03084453d70a148faa0479e91d37af69d8f0f0e7 (patch) | |
tree | ae03fcbed09a2d66a56b45f0c87e120504b18797 /src | |
parent | 707c42cb9601c64aa8dc7ac8d277b56d0a6b34a4 (diff) |
i965: Add #defines for any32h/all32h predication.
These have existed since Ivybridge. We don't use them today, but the
Gen8+ disassembler supports them, and I'd like to use symbolic names
rather than magic numbers.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_defines.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h index 88d18a32292..858d9af43e3 100644 --- a/src/mesa/drivers/dri/i965/brw_defines.h +++ b/src/mesa/drivers/dri/i965/brw_defines.h @@ -1025,6 +1025,8 @@ operator|(brw_urb_write_flags x, brw_urb_write_flags y) #define BRW_PREDICATE_ALIGN1_ALL8H 9 #define BRW_PREDICATE_ALIGN1_ANY16H 10 #define BRW_PREDICATE_ALIGN1_ALL16H 11 +#define BRW_PREDICATE_ALIGN1_ANY32H 12 +#define BRW_PREDICATE_ALIGN1_ALL32H 13 #define BRW_PREDICATE_ALIGN16_REPLICATE_X 2 #define BRW_PREDICATE_ALIGN16_REPLICATE_Y 3 #define BRW_PREDICATE_ALIGN16_REPLICATE_Z 4 |