From: Dave Airlie Date: Sat, 3 May 2008 11:31:22 +0000 (+1000) Subject: r300: add R300_NO_TCL to allow testing of non-tcl on tcl cards X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f0a75f0040b0de339c78448844a7b18ab995c46;p=mesa.git r300: add R300_NO_TCL to allow testing of non-tcl on tcl cards (cherry picked from commit 026ef8111a94f6449dfa5e5cc0ae91fca4e68c0c) --- diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/mesa/drivers/dri/radeon/radeon_screen.c index 6107577e408..5cf7f89e110 100644 --- a/src/mesa/drivers/dri/radeon/radeon_screen.c +++ b/src/mesa/drivers/dri/radeon/radeon_screen.c @@ -697,6 +697,9 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv ) return NULL; } + if (getenv("R300_NO_TCL")) + screen->chip_flags &= ~RADEON_CHIPSET_TCL; + if (screen->chip_family <= CHIP_FAMILY_RS200) screen->chip_flags |= RADEON_CLASS_R100; else if (screen->chip_family <= CHIP_FAMILY_RV280)