mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
Revert "mesa: only use fallback texture when using shaders, not fixed-function"
This reverts commit a0edbfb28f.
This patch didn't completely fix the problem. The next patch will.
This commit is contained in:
parent
a0edbfb28f
commit
823815a485
1 changed files with 8 additions and 14 deletions
|
|
@ -560,20 +560,14 @@ update_texture_state( GLcontext *ctx )
|
|||
}
|
||||
}
|
||||
|
||||
if (!texUnit->_ReallyEnabled) {
|
||||
if (fprog) {
|
||||
/* If we get here it means the shader is expecting a texture
|
||||
* object, but there isn't one (or it's incomplete). Use the
|
||||
* fallback texture.
|
||||
*/
|
||||
struct gl_texture_object *texObj = _mesa_get_fallback_texture(ctx);
|
||||
texUnit->_ReallyEnabled = 1 << TEXTURE_2D_INDEX;
|
||||
_mesa_reference_texobj(&texUnit->_Current, texObj);
|
||||
}
|
||||
else {
|
||||
/* fixed-function: texture unit is really disabled */
|
||||
continue;
|
||||
}
|
||||
if (fprog && !texUnit->_ReallyEnabled) {
|
||||
/* If we get here it means the shader is expecting a texture
|
||||
* object, but there isn't one (or it's incomplete). Use the
|
||||
* fallback texture.
|
||||
*/
|
||||
struct gl_texture_object *texObj = _mesa_get_fallback_texture(ctx);
|
||||
texUnit->_ReallyEnabled = 1 << TEXTURE_2D_INDEX;
|
||||
_mesa_reference_texobj(&texUnit->_Current, texObj);
|
||||
}
|
||||
|
||||
/* if we get here, we know this texture unit is enabled */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue