summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2015-10-19 18:59:53 -0700
committerMatt Turner <mattst88@gmail.com>2015-10-21 10:17:38 -0700
commit05cc56cca3abac0dc8e34469a260fe3c635a12d8 (patch)
treebb5f7254919f4f9ea2fac323af1b6c6a7470d65a
parentb29f92daec59a4181a45175b6bfc6e636c57fb33 (diff)
i965: Add const to brw_compact_inst_bits.
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
-rw-r--r--src/mesa/drivers/dri/i965/brw_inst.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_inst.h b/src/mesa/drivers/dri/i965/brw_inst.h
index 819ce596547..524a4fb1d37 100644
--- a/src/mesa/drivers/dri/i965/brw_inst.h
+++ b/src/mesa/drivers/dri/i965/brw_inst.h
@@ -739,7 +739,7 @@ typedef struct {
* Bits indices range from 0..63.
*/
static inline unsigned
-brw_compact_inst_bits(brw_compact_inst *inst, unsigned high, unsigned low)
+brw_compact_inst_bits(const brw_compact_inst *inst, unsigned high, unsigned low)
{
const uint64_t mask = (1ull << (high - low + 1)) - 1;
@@ -774,7 +774,7 @@ brw_compact_inst_set_##name(const struct brw_device_info *devinfo, \
} \
static inline unsigned \
brw_compact_inst_##name(const struct brw_device_info *devinfo, \
- brw_compact_inst *inst) \
+ const brw_compact_inst *inst) \
{ \
assert(assertions); \
(void) devinfo; \