diff options
author | Keith Whitwell <[email protected]> | 2008-04-19 13:20:26 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-19 13:20:26 +0100 |
commit | 1246d06313f443c91dea07239b43a88ba2b86dde (patch) | |
tree | 312ac965e387f6fc5323ce2aa9562031ceba23fd /src/gallium/auxiliary/draw/draw_pt.h | |
parent | 882e5d84dcb19c24b7b56cfe6049810023f3a17e (diff) |
draw: remove named clipmask flags, tidy up pt middle ends
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt.h b/src/gallium/auxiliary/draw/draw_pt.h index eb23ee1c1ef..1119e9c6b8a 100644 --- a/src/gallium/auxiliary/draw/draw_pt.h +++ b/src/gallium/auxiliary/draw/draw_pt.h @@ -50,6 +50,12 @@ struct draw_context; #define DRAW_PT_FLAG_MASK (3<<30) +#define PT_SHADE 0x1 +#define PT_CLIPTEST 0x2 +#define PT_PIPELINE 0x4 +#define PT_MAX_MIDDLE 0x8 + + /* The "front end" - prepare sets of fetch, draw elements for the * middle end. * |