summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe/lp_context.h
diff options
context:
space:
mode:
authorKeith Whitwell <[email protected]>2010-11-22 10:36:01 +0000
committerKeith Whitwell <[email protected]>2010-11-22 10:36:01 +0000
commitb2ddb93ff3b8c88682634ccdef247967e31fab84 (patch)
tree495da09bbeddd9fdb51e4301c113bcf4ae94c8e4 /src/gallium/drivers/llvmpipe/lp_context.h
parentd5aadf0d80e8c973ef5cf9d82e97f23f0e3c032b (diff)
parent546c5ffa11d70631348e5776df7a4168f07600f6 (diff)
Merge branch 'lp-offset-twoside'
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_context.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h
index db09c95b272..a35e09e8b47 100644
--- a/src/gallium/drivers/llvmpipe/lp_context.h
+++ b/src/gallium/drivers/llvmpipe/lp_context.h
@@ -104,9 +104,18 @@ struct llvmpipe_context {
/** Vertex format */
struct vertex_info vertex_info;
+ /** Which vertex shader output slot contains color */
+ int color_slot[2];
+
+ /** Which vertex shader output slot contains bcolor */
+ int bcolor_slot[2];
+
/** Which vertex shader output slot contains point size */
int psize_slot;
+ /**< minimum resolvable depth value, for polygon offset */
+ double mrd;
+
/** The tiling engine */
struct lp_setup_context *setup;
struct lp_setup_variant setup_variant;