diff options
author | Keith Whitwell <[email protected]> | 2009-07-24 18:17:05 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:18 +0100 |
commit | 80eb276630a194632d9eba1e2b107d678d0f0a4d (patch) | |
tree | 6663c2ad80067409280dda7cd9ab75097bdbcb01 /src/gallium/drivers/llvmpipe/lp_quad.h | |
parent | bdbb4beb21876010b14785569a920fa65a67d1ad (diff) |
llvmpipe: actually pass >1 quad from triangle routine
First attempt
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_quad.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_quad.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_quad.h b/src/gallium/drivers/llvmpipe/lp_quad.h index f31a74404de..b25c35d3278 100644 --- a/src/gallium/drivers/llvmpipe/lp_quad.h +++ b/src/gallium/drivers/llvmpipe/lp_quad.h @@ -97,10 +97,10 @@ struct quad_header { struct quad_header_inout inout; struct quad_header_output output; - const struct tgsi_interp_coef *coef; + /* Redundant/duplicated: + */ const struct tgsi_interp_coef *posCoef; - - unsigned nr_attrs; + const struct tgsi_interp_coef *coef; }; #endif /* LP_QUAD_H */ |