diff options
author | Brian <[email protected]> | 2007-06-22 12:47:04 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-22 12:47:04 -0600 |
commit | f79c225d9e5adee6287a9bba35f014c3fe00d3f9 (patch) | |
tree | 7f8641c4118a87aabeb76f75db5d45a53e522f2d /src/mesa/pipe/p_defines.h | |
parent | 493ed9fc11a2bf272a2c1e9e5a072e4f02b46554 (diff) |
Assorted token renaming/removal, minor state changes, etc.
Diffstat (limited to 'src/mesa/pipe/p_defines.h')
-rw-r--r-- | src/mesa/pipe/p_defines.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/mesa/pipe/p_defines.h b/src/mesa/pipe/p_defines.h index 550240e6475..75573107ff2 100644 --- a/src/mesa/pipe/p_defines.h +++ b/src/mesa/pipe/p_defines.h @@ -89,16 +89,13 @@ #define PIPE_POLYGON_MODE_LINE 1 #define PIPE_POLYGON_MODE_POINT 2 -/** Polygon cull mode */ -#define PIPE_POLYGON_CULL_NONE 0 -#define PIPE_POLYGON_CULL_FRONT 1 -#define PIPE_POLYGON_CULL_BACK 2 -#define PIPE_POLYGON_CULL_BOTH 3 - -/** Polygon front winding order */ -#define PIPE_POLYGON_FRONT_CW 0 -#define PIPE_POLYGON_FRONT_CCW 1 +/** Polygon front/back window, also for culling */ +#define PIPE_WINDING_NONE 0 +#define PIPE_WINDING_CW 1 +#define PIPE_WINDING_CCW 2 +#define PIPE_WINDING_BOTH (PIPE_WINDING_CW | PIPE_WINDING_CCW) +/** Stencil ops */ #define PIPE_STENCIL_OP_KEEP 0 #define PIPE_STENCIL_OP_ZERO 1 #define PIPE_STENCIL_OP_REPLACE 2 |