summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_tile_soa.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-10-19 14:02:01 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-10-19 14:02:01 +0100
commit2f5f357c5b67869e75087fc1f17ed0d666fb134e (patch)
tree0790c40fb5e0a97a3191172096bc63876bea3471 /src/gallium/drivers/llvmpipe/lp_tile_soa.h
parent0580079864c41c236a4167a1543b1a2fc5090362 (diff)
llvmpipe: Reshape the shader input from 8x2 to 4x4.
Incorrect rendering until the interpolation code generation is updated.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_tile_soa.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_tile_soa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_soa.h b/src/gallium/drivers/llvmpipe/lp_tile_soa.h
index 040b01865d..d72d6d2ef1 100644
--- a/src/gallium/drivers/llvmpipe/lp_tile_soa.h
+++ b/src/gallium/drivers/llvmpipe/lp_tile_soa.h
@@ -46,8 +46,8 @@ struct pipe_transfer;
#define TILE_SIZE 64
-#define TILE_VECTOR_HEIGHT 2
-#define TILE_VECTOR_WIDTH 8
+#define TILE_VECTOR_HEIGHT 4
+#define TILE_VECTOR_WIDTH 4
extern const unsigned char
tile_offset[TILE_VECTOR_HEIGHT][TILE_VECTOR_WIDTH];