mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-05 21:10:43 +02:00
r300g: disable ARB_draw_instanced on SWTCL chipsets.
This fixes Unigine Heaven.
This commit is contained in:
parent
4673f9433f
commit
3f32efa2b8
1 changed files with 1 additions and 1 deletions
|
|
@ -130,12 +130,12 @@ static int r300_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
|
|||
case PIPE_CAP_DEPTHSTENCIL_CLEAR_SEPARATE:
|
||||
case PIPE_CAP_SHADER_STENCIL_EXPORT:
|
||||
case PIPE_CAP_ARRAY_TEXTURES:
|
||||
case PIPE_CAP_TGSI_INSTANCEID:
|
||||
return 0;
|
||||
|
||||
/* SWTCL-only features. */
|
||||
case PIPE_CAP_STREAM_OUTPUT:
|
||||
case PIPE_CAP_PRIMITIVE_RESTART:
|
||||
case PIPE_CAP_TGSI_INSTANCEID:
|
||||
return !r300screen->caps.has_tcl;
|
||||
|
||||
/* Texturing. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue