Rename R300_NO_TCL envvar to RADEON_NO_TCL

The envvar works for R100 and R200 too, and the classic R300 driver
doesn't even exist anymore.

"RADEON_NO_TCL" is already mentioned in the code and is the same envvar
used for the R300g driver.
This commit is contained in:
Matt Turner 2012-01-30 13:58:10 -05:00
parent 647ca47cc3
commit ef3cec5804
2 changed files with 3 additions and 3 deletions

View File

@ -100,10 +100,10 @@ See the <A HREF="xlibdriver.html">Xlib software driver page</A> for details.
</ul>
<h2>Radeon R300 driver environment variables (non-Gallium)</h2>
<h2>Radeon driver environment variables (radeon, r200, and r300g)</h2>
<ul>
<li>R300_NO_TCL - if set, disable hardware-accelerated Transform/Clip/Lighting.
<li>RADEON_NO_TCL - if set, disable hardware-accelerated Transform/Clip/Lighting.
</ul>

View File

@ -514,7 +514,7 @@ radeonCreateScreen2(__DRIscreen *sPriv)
if (ret == -1)
return NULL;
if (getenv("R300_NO_TCL"))
if (getenv("RADEON_NO_TCL"))
screen->chip_flags &= ~RADEON_CHIPSET_TCL;
i = 0;