diff options
author | José Fonseca <[email protected]> | 2009-08-09 23:10:19 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:27 +0100 |
commit | 2d6b39f05edcd575b1e10d53f96a38bec848fa67 (patch) | |
tree | 2fcee25f45648d36f6ffeecb0ab9439f77acc4f7 /src/gallium/drivers/llvmpipe/lp_quad.h | |
parent | e7fc21434d2c5a9177a427950be5029ff4db43ee (diff) |
llvmpipe: Use the generated SoA blending code.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_quad.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_quad.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_quad.h b/src/gallium/drivers/llvmpipe/lp_quad.h index b25c35d3278..96cd27de81f 100644 --- a/src/gallium/drivers/llvmpipe/lp_quad.h +++ b/src/gallium/drivers/llvmpipe/lp_quad.h @@ -83,7 +83,7 @@ struct quad_header_inout struct quad_header_output { /** colors in SOA format (rrrr, gggg, bbbb, aaaa) */ - float color[PIPE_MAX_COLOR_BUFS][NUM_CHANNELS][QUAD_SIZE]; + float ALIGN16_ATTRIB color[PIPE_MAX_COLOR_BUFS][NUM_CHANNELS][QUAD_SIZE]; float depth[QUAD_SIZE]; }; |