mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 11:30:20 +01:00
Remove support for the R200_NO_VTXFMT environment variable. Instead use
'tcl_mode=1'. This fixes bugzilla #3972.
This commit is contained in:
parent
4c4e4bfa4e
commit
fbcc5aedf2
1 changed files with 3 additions and 2 deletions
|
|
@ -524,10 +524,11 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual,
|
|||
}
|
||||
TCL_FALLBACK(rmesa->glCtx, R200_TCL_FALLBACK_TCL_DISABLE, 1);
|
||||
}
|
||||
|
||||
if (rmesa->r200Screen->chipset & R200_CHIPSET_TCL) {
|
||||
if (tcl_mode >= DRI_CONF_TCL_VTXFMT && !getenv("R200_NO_VTXFMT")) {
|
||||
if (tcl_mode >= DRI_CONF_TCL_VTXFMT)
|
||||
r200VtxfmtInit( ctx, tcl_mode >= DRI_CONF_TCL_CODEGEN );
|
||||
}
|
||||
|
||||
_tnl_need_dlist_norm_lengths( ctx, GL_FALSE );
|
||||
}
|
||||
return GL_TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue