summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/config.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-02-20 13:13:55 -0700
committerBrian Paul <[email protected]>2012-02-24 08:03:15 -0700
commit2b0aa3fb21386051976bf3c45e6455fc45d69bb3 (patch)
treeae6175d31ed8b7ebfd593b610b87ac4e271ee3f5 /src/mesa/main/config.h
parent7ad880f49ffc5662c1d9cd86e6a5c30dbe71784b (diff)
mesa: move more swrast-related #defines out of core Mesa
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r--src/mesa/main/config.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h
index c70cc1818a5..8bf741f99ac 100644
--- a/src/mesa/main/config.h
+++ b/src/mesa/main/config.h
@@ -262,46 +262,6 @@
/*@}*/
-/**
- * \name Mesa-specific parameters
- */
-/*@{*/
-
-
-/**
- * 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
-
-
-/**
- * Bits per stencil value: 8
- */
-#define STENCIL_BITS 8
-
-
-/**
- * For swrast, bits per color channel: 8, 16 or 32
- */
-#ifndef CHAN_BITS
-#define CHAN_BITS 8
-#endif
-
-
/*
* Color channel component order
*