diff options
author | Keith Whitwell <[email protected]> | 2009-12-24 12:52:43 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-12-24 12:53:07 +0000 |
commit | 5f6dcf65e7023edda1783eccef03d213f3cb26fb (patch) | |
tree | 01fee80aa2dabb62f7fe1ac16b6c509d5ba510fb /src/gallium/drivers/i965/brw_context.h | |
parent | 6c30e17f9eb572f1bb9b80652a8c6c0d838d0498 (diff) |
i965g: get trivial/tri working again after edgeflag changes
Diffstat (limited to 'src/gallium/drivers/i965/brw_context.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_context.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965/brw_context.h b/src/gallium/drivers/i965/brw_context.h index 56e78074000..8c006bb95b2 100644 --- a/src/gallium/drivers/i965/brw_context.h +++ b/src/gallium/drivers/i965/brw_context.h @@ -120,6 +120,13 @@ #define BRW_MAX_CURBE (32*16) + +/* Need a value to say a particular vertex shader output isn't + * present. Limits us to 63 outputs currently. + */ +#define BRW_OUTPUT_NOT_PRESENT ((1<<6)-1) + + struct brw_context; struct brw_depth_stencil_state { @@ -335,8 +342,6 @@ struct brw_vs_prog_data { GLuint nr_params; /**< number of TGSI_FILE_CONSTANT's */ - GLuint output_edgeflag; - GLboolean writes_psiz; /* Used for calculating urb partitions: |