diff options
Diffstat (limited to 'src/intel/compiler/brw_eu.h')
-rw-r--r-- | src/intel/compiler/brw_eu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_eu.h b/src/intel/compiler/brw_eu.h index 1d509eb026c..98de5153525 100644 --- a/src/intel/compiler/brw_eu.h +++ b/src/intel/compiler/brw_eu.h @@ -333,6 +333,14 @@ brw_urb_desc(const struct gen_device_info *devinfo, } } +static inline uint32_t +brw_urb_desc_msg_type(ASSERTED const struct gen_device_info *devinfo, + uint32_t desc) +{ + assert(devinfo->gen >= 7); + return GET_BITS(desc, 3, 0); +} + /** * Construct a message descriptor immediate with the specified sampler * function controls. |