summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast_priv.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-19 16:41:27 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-19 16:41:27 +0100
commitb0828b0adc7438ef33f9393f839226ef7dfda0dc (patch)
treea17561ea095c06aed51db32d184fa3b59fe542ff /src/gallium/drivers/llvmpipe/lp_rast_priv.h
parent3fd6b724cc406573cf53684cd72fa7f60b65354a (diff)
llvmpipe: calculate masks in format desired by shader
Also remove branches calculating masks for quads.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast_priv.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast_priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_priv.h b/src/gallium/drivers/llvmpipe/lp_rast_priv.h
index 11e8e78e79..f438faaf36 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast_priv.h
+++ b/src/gallium/drivers/llvmpipe/lp_rast_priv.h
@@ -80,6 +80,6 @@ struct lp_rasterizer {
void lp_rast_shade_quads( struct lp_rasterizer *rast,
const struct lp_rast_shader_inputs *inputs,
unsigned x, unsigned y,
- const unsigned *masks);
+ const uint32_t *masks);
#endif