diff options
author | Brian Paul <[email protected]> | 2012-02-20 13:13:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-02-24 08:03:15 -0700 |
commit | 2b0aa3fb21386051976bf3c45e6455fc45d69bb3 (patch) | |
tree | ae6175d31ed8b7ebfd593b610b87ac4e271ee3f5 /src/mesa/swrast/swrast.h | |
parent | 7ad880f49ffc5662c1d9cd86e6a5c30dbe71784b (diff) |
mesa: move more swrast-related #defines out of core Mesa
Diffstat (limited to 'src/mesa/swrast/swrast.h')
-rw-r--r-- | src/mesa/swrast/swrast.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index 15b07ed0d55..a299e6fda87 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -37,6 +37,26 @@ /** + * If non-zero use GLdouble for walking triangle edges, for better accuracy. + */ +#define TRIANGLE_WALK_DOUBLE 0 + + +/** + * Bits per depth buffer value (max is 32). + */ +#ifndef DEFAULT_SOFTWARE_DEPTH_BITS +#define DEFAULT_SOFTWARE_DEPTH_BITS 16 +#endif +/** Depth buffer data type */ +#if DEFAULT_SOFTWARE_DEPTH_BITS <= 16 +#define DEFAULT_SOFTWARE_DEPTH_TYPE GLushort +#else +#define DEFAULT_SOFTWARE_DEPTH_TYPE GLuint +#endif + + +/** * Max image/surface/texture size. */ #define SWRAST_MAX_WIDTH 16384 |