diff options
author | Brian Paul <[email protected]> | 2011-01-26 16:22:30 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-26 16:22:32 -0700 |
commit | 8697dbdfbcb6c5cf256658ed6cb2277040b586d2 (patch) | |
tree | dc632f952a7db03f11de16bcf9fa84cd194dabaf | |
parent | 3fe0185ba506b830b86f0e39d2e366400ecffae6 (diff) |
tgsi: add cases for array textures
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33555
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sse2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/tgsi_sse2.c index 3f2cda860e0..92ba8b8f033 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sse2.c @@ -1514,6 +1514,7 @@ emit_tex( struct x86_function *func, break; case TGSI_TEXTURE_2D: case TGSI_TEXTURE_RECT: + case TGSI_TEXTURE_1D_ARRAY: count = 2; break; case TGSI_TEXTURE_SHADOW1D: @@ -1521,6 +1522,7 @@ emit_tex( struct x86_function *func, case TGSI_TEXTURE_SHADOWRECT: case TGSI_TEXTURE_3D: case TGSI_TEXTURE_CUBE: + case TGSI_TEXTURE_2D_ARRAY: count = 3; break; default: |