diff options
author | Jakob Bornecrantz <[email protected]> | 2010-07-15 21:11:24 -0700 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-07-22 20:26:35 -0700 |
commit | e36a08221400af025f1585f4e1ddbd3715810368 (patch) | |
tree | 7bbcd4d46ab8861a2c133cd030440b822ed904bb /src/gallium/auxiliary/tgsi/tgsi_text.c | |
parent | eeaab2047cfce8a7445fd9f835e737682eb503ac (diff) |
tgsi: Fix error message on invalid swizzle parse
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_text.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c index 8a9409b4ee9..b01d2ff4689 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_text.c +++ b/src/gallium/auxiliary/tgsi/tgsi_text.c @@ -732,7 +732,7 @@ parse_optional_swizzle( else if (uprcase( *cur ) == 'W') swizzle[i] = TGSI_SWIZZLE_W; else { - report_error( ctx, "Expected register swizzle component `x', `y', `z', `w', `0' or `1'" ); + report_error( ctx, "Expected register swizzle component `x', `y', `z' or `w'" ); return FALSE; } cur++; |