summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-07-14 14:53:35 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-07-14 14:53:35 +0100
commitd023fb39288be943d1c8ec5a60e9ff5778f4642f (patch)
treeeef6f8415ca204a1461858dfe217f8e79184c270 /src/gallium/drivers/llvmpipe/lp_rast.h
parentbed78862d4db044a87d6c3808548abd6df95dd7d (diff)
llvmpipe: Remove redundant alignments.
The lp_rast_shader_inputs' alignment is irrelevant now that it contains pointers instead of actual data. Likewise, lp_rast_triangle's size alignment is meaningless.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.h b/src/gallium/drivers/llvmpipe/lp_rast.h
index 0991344cce..eaf2a6f334 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast.h
+++ b/src/gallium/drivers/llvmpipe/lp_rast.h
@@ -117,7 +117,7 @@ struct lp_rast_plane {
*/
struct lp_rast_triangle {
/* inputs for the shader */
- PIPE_ALIGN_VAR(16) struct lp_rast_shader_inputs inputs;
+ struct lp_rast_shader_inputs inputs;
int step[3][16];