Use bit-wise not instead of logical not.
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 18 Mar 2010 22:35:05 +0000 (15:35 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Thu, 18 Mar 2010 22:35:05 +0000 (15:35 -0700)
commitfda5078324e0a940a2ddfdd1c63ffceb47c5a717
tree893527132ec9f536b85be8f2bb6031839c9a9283
parentb7e8039132830a2cd7a75691d11750d2ccc0a4e2
Use bit-wise not instead of logical not.

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.
src/mesa/drivers/dri/i915/intel_tris.c