diff options
author | Ian Romanick <[email protected]> | 2010-03-18 17:30:15 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-18 18:23:21 -0700 |
commit | 3a3ef3d6c9a9f0fbea0674bd2c275be2be2f6519 (patch) | |
tree | 1026d5af2ef7e72336033c7ea91657af60c82bd0 | |
parent | 98aed6dc697d009bb08bd63b41bd3a6b66fb7333 (diff) |
intel: Use bit-wise not instead of logical not (i830 path)
The assertion is checking that the low-order bits of offset are not
set. It does this by anding the inverted offset mask with the
offset. This is clearly intended to be a bit-wise "invert".
Fixes bug #25984.
(cherry picked from commit 062a208814ad65d330f403c46d4bed88648f334f)
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_tris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_tris.c b/src/mesa/drivers/dri/i915/intel_tris.c index b1195da319c..5aefe456226 100644 --- a/src/mesa/drivers/dri/i915/intel_tris.c +++ b/src/mesa/drivers/dri/i915/intel_tris.c @@ -273,7 +273,7 @@ void intel_flush_prim(struct intel_context *intel) OUT_BATCH(_3DSTATE_LOAD_STATE_IMMEDIATE_1 | I1_LOAD_S(0) | I1_LOAD_S(2) | 1); /* S0 */ - assert((offset & !S0_VB_OFFSET_MASK_830) == 0); + assert((offset & ~S0_VB_OFFSET_MASK_830) == 0); OUT_RELOC(vb_bo, I915_GEM_DOMAIN_VERTEX, 0, offset | (intel->vertex_size << S0_VB_PITCH_SHIFT_830) | S0_VB_ENABLE_830); |