diff options
author | José Fonseca <[email protected]> | 2010-07-14 14:53:35 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-07-14 14:53:35 +0100 |
commit | d023fb39288be943d1c8ec5a60e9ff5778f4642f (patch) | |
tree | eef6f8415ca204a1461858dfe217f8e79184c270 /src/gallium/drivers/llvmpipe/lp_rast.h | |
parent | bed78862d4db044a87d6c3808548abd6df95dd7d (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.h | 2 |
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 0991344cce9..eaf2a6f3345 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]; |