diff options
author | Keith Whitwell <[email protected]> | 2009-10-08 22:46:21 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-10-08 22:46:21 +0100 |
commit | 1814395b7ef3506935ae1f12630cdd602e15cd55 (patch) | |
tree | fc797e2a2e6bf7bcf48e55899e7cea8d6e767436 /src/gallium/drivers/llvmpipe/lp_rast.h | |
parent | 0718c7700533a965d7cd06b4f67b82bbae6e66a1 (diff) |
llvmpipe: triangle struct owns its copy of shader inputs
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 28bb0a60ebc..64d668f9983 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.h +++ b/src/gallium/drivers/llvmpipe/lp_rast.h @@ -98,7 +98,7 @@ struct lp_rast_triangle { float dx31; /* inputs for the shader */ - struct lp_rast_shader_inputs *inputs; + struct lp_rast_shader_inputs inputs; }; |