summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-01-26 13:50:41 +1100
committerTimothy Arceri <[email protected]>2017-01-30 10:17:46 +1100
commit77a6597bb7b05d8d8ce30be9eb24792faa9067e9 (patch)
tree5e7f47e2ed6660887060ca6d379a7f835f53e847 /src/mesa
parentb8ee45ebdc2408f50bc0fdb4525ab4f16ffe36e3 (diff)
i965: fix up asserts in brw_inst_set_jip()
We are casting from a signed 32bit int to an unsigned 16bit int so shift 15 bits rather than 16. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-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 13fce97e539..bcb6786bbad 100644
--- a/src/mesa/drivers/dri/i965/brw_inst.h
+++ b/src/mesa/drivers/dri/i965/brw_inst.h
@@ -283,8 +283,8 @@ brw_inst_set_jip(const struct gen_device_info *devinfo,
if (devinfo->gen >= 8) {
brw_inst_set_bits(inst, 127, 96, (uint32_t)value);
} else {
- assert(value <= (1 << 16) - 1);
- assert(value > -(1 << 16));
+ assert(value <= (1 << 15) - 1);
+ assert(value >= -(1 << 15));
brw_inst_set_bits(inst, 111, 96, (uint16_t)value);
}
}