diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-04 11:25:38 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-04 11:25:38 -0800 |
commit | ad80009c8845f446d64a0a43f39b5a797db2245b (patch) | |
tree | a2cebdbfd9d22de2fdddd8288c1f049aba028393 /src/gallium/auxiliary | |
parent | 0fb1eaddfbaf487067e0ff4f1d6f82145b6b0acd (diff) |
tgsi: Fix assert.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index ba89f2fbc3..517ae67d79 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -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) { |