mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
tgsi: Fix assert.
This commit is contained in:
parent
0fb1eaddfb
commit
ad80009c88
1 changed files with 1 additions and 1 deletions
|
|
@ -1955,7 +1955,7 @@ exec_declaration(struct tgsi_exec_machine *mach,
|
|||
if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION) {
|
||||
assert(decl->Semantic.Index == 0);
|
||||
assert(first == last);
|
||||
assert(mask = TGSI_WRITEMASK_XYZW);
|
||||
assert(mask == TGSI_WRITEMASK_XYZW);
|
||||
|
||||
mach->Inputs[first] = mach->QuadPos;
|
||||
} else if (decl->Semantic.Name == TGSI_SEMANTIC_FACE) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue