mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
i965: fix invalid assertion in emit_xpd(), again
This commit is contained in:
parent
5b64d94390
commit
e4b7d9ea35
1 changed files with 1 additions and 1 deletions
|
|
@ -692,7 +692,7 @@ void emit_xpd(struct brw_compile *p,
|
|||
{
|
||||
GLuint i;
|
||||
|
||||
assert(!(mask & WRITEMASK_W) == WRITEMASK_W);
|
||||
assert((mask & WRITEMASK_W) != WRITEMASK_W);
|
||||
|
||||
for (i = 0 ; i < 3; i++) {
|
||||
if (mask & (1<<i)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue