mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 05:50:11 +01:00
radeonsi: decrease the max GS invocation count to 32
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5095>
This commit is contained in:
parent
3cd96b5109
commit
3f1f23239a
1 changed files with 2 additions and 3 deletions
|
|
@ -264,9 +264,8 @@ static int si_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
|
|||
case PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS:
|
||||
return 4095;
|
||||
case PIPE_CAP_MAX_GS_INVOCATIONS:
|
||||
/* The closed driver exposes 127, but 125 is the greatest
|
||||
* number that works. */
|
||||
return 125;
|
||||
/* Even though the hw supports more, we officially wanna expose only 32. */
|
||||
return 32;
|
||||
|
||||
case PIPE_CAP_MAX_VERTEX_ATTRIB_STRIDE:
|
||||
return 2048;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue