summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r128/r128_screen.c
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2004-10-08 23:03:38 +0000
committerEric Anholt <anholt@FreeBSD.org>2004-10-08 23:03:38 +0000
commitea6f4f6079de8f35b6e3d597525d958bcedc7bad (patch)
tree54524daf86b78d8495b5150284dd371d48928e34 /src/mesa/drivers/dri/r128/r128_screen.c
parentb4d269f35f0f0e0c87793a319a77f571a54a5a47 (diff)
Add fallback debugging (R128_DEBUG=fall) output, and set DO_DEBUG=1 by default
so that we can use the env var to get output. Add a no_rast driconf option to force software fallbacks.
Diffstat (limited to 'src/mesa/drivers/dri/r128/r128_screen.c')
-rw-r--r--src/mesa/drivers/dri/r128/r128_screen.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r128/r128_screen.c b/src/mesa/drivers/dri/r128/r128_screen.c
index 3ab4cd0856..f4d069d139 100644
--- a/src/mesa/drivers/dri/r128/r128_screen.c
+++ b/src/mesa/drivers/dri/r128/r128_screen.c
@@ -59,16 +59,17 @@ DRI_CONF_BEGIN
DRI_CONF_SECTION_QUALITY
DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
DRI_CONF_SECTION_END
-#if ENABLE_PERF_BOXES
DRI_CONF_SECTION_DEBUG
+ DRI_CONF_NO_RAST(false)
+#if ENABLE_PERF_BOXES
DRI_CONF_PERFORMANCE_BOXES(false)
- DRI_CONF_SECTION_END
#endif
+ DRI_CONF_SECTION_END
DRI_CONF_END;
#if ENABLE_PERF_BOXES
-static const GLuint __driNConfigOptions = 3;
+static const GLuint __driNConfigOptions = 4;
#else
-static const GLuint __driNConfigOptions = 2;
+static const GLuint __driNConfigOptions = 3;
#endif
#if 1