mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 05:10:23 +01:00
fix wrong fallback bit being set when ARB_vertex_program is enabled. Add missing fallback string for ARB_vertex_program. Disable ARB_vertex_program by default (just plain doesn't work). In fact, maybe it should be thrown out altogether in this branch?
This commit is contained in:
parent
e14b3baca0
commit
e5f6f26c87
3 changed files with 4 additions and 3 deletions
|
|
@ -84,7 +84,7 @@ DRI_CONF_BEGIN
|
|||
DRI_CONF_NO_RAST(false)
|
||||
DRI_CONF_SECTION_END
|
||||
DRI_CONF_SECTION_SOFTWARE
|
||||
DRI_CONF_ARB_VERTEX_PROGRAM(true)
|
||||
DRI_CONF_ARB_VERTEX_PROGRAM(false)
|
||||
DRI_CONF_NV_VERTEX_PROGRAM(false)
|
||||
DRI_CONF_SECTION_END
|
||||
DRI_CONF_END;
|
||||
|
|
|
|||
|
|
@ -2092,7 +2092,7 @@ static void r200Enable( GLcontext *ctx, GLenum cap, GLboolean state )
|
|||
break;
|
||||
|
||||
case GL_VERTEX_PROGRAM_ARB:
|
||||
TCL_FALLBACK(rmesa->glCtx, R200_TCL_FALLBACK_TCL_DISABLE, state);
|
||||
TCL_FALLBACK(rmesa->glCtx, R200_TCL_FALLBACK_VERTEX_PROGRAM, state);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
|
|
@ -540,7 +540,8 @@ static char *fallbackStrings[] = {
|
|||
"Texgen unit 4",
|
||||
"Texgen unit 5",
|
||||
"User disable",
|
||||
"Bitmap as points"
|
||||
"Bitmap as points",
|
||||
"Vertex program"
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue