mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
intel: intel_texture_drawpixels() can't handle GL_DEPTH_STENCIL.
Fixes glean depthStencil test.
(cherry picked from commit 3885b708fd)
This commit is contained in:
parent
19218fe712
commit
0584b6e433
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ intel_texture_drawpixels(GLcontext * ctx,
|
|||
/* We don't have a way to generate fragments with stencil values which
|
||||
* will set the resulting stencil value.
|
||||
*/
|
||||
if (format == GL_STENCIL_INDEX)
|
||||
if (format == GL_STENCIL_INDEX || format == GL_DEPTH_STENCIL)
|
||||
return GL_FALSE;
|
||||
|
||||
/* Check that we can load in a texture this big. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue