diff options
author | Marek Olšák <[email protected]> | 2011-09-05 03:23:05 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-09-10 08:53:29 +0200 |
commit | d8452a0be810d7176b0cbfe6632fc0f8016b5733 (patch) | |
tree | 013c479d43d2ee451289ea2627c5d43cfeb27746 /src/gallium/auxiliary/tgsi/tgsi_text.c | |
parent | 379429137238e79296b8222c0e13d7d961910633 (diff) |
gallium: add shadow 1D and 2D array samplers to TGSI
And filling in all the switch statements in auxiliary. Mostly untested.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_text.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_text.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c index 57622a0dea6..6b97803711f 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_text.c +++ b/src/gallium/auxiliary/tgsi/tgsi_text.c @@ -826,7 +826,11 @@ static const char *texture_names[TGSI_TEXTURE_COUNT] = "RECT", "SHADOW1D", "SHADOW2D", - "SHADOWRECT" + "SHADOWRECT", + "1DARRAY", + "2DARRAY", + "SHADOW1DARRAY", + "SHADOW2DARRAY" }; static const char *type_names[] = |