Module: Mesa
Branch: master
Commit: babadb8bb9d68f3687a9c9cb80f98c732b1120c7
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=babadb8bb9d68f3687a9c9cb80f98c732b1120c7

Author: Corbin Simpson <[email protected]>
Date:   Wed Oct 21 05:54:49 2009 -0700

r300g: Don't use getenv; use debug_get_*_option instead.

---

 src/gallium/drivers/r300/r300_chipset.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_chipset.c 
b/src/gallium/drivers/r300/r300_chipset.c
index d138866..9b763e2 100644
--- a/src/gallium/drivers/r300/r300_chipset.c
+++ b/src/gallium/drivers/r300/r300_chipset.c
@@ -31,7 +31,7 @@ void r300_parse_chipset(struct r300_capabilities* caps)
 {
     /* Reasonable defaults */
     caps->num_vert_fpus = 4;
-    caps->has_tcl = getenv("RADEON_NO_TCL") ? FALSE : TRUE;
+    caps->has_tcl = debug_get_bool_option("RADEON_NO_TCL", FALSE) ? FALSE : 
TRUE;
     caps->is_r500 = FALSE;
     caps->high_second_pipe = FALSE;
 

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to