iris: fix GS output component limit

this is total, so should be 1024, not 128
This commit is contained in:
Kenneth Graunke 2018-07-26 01:11:11 -07:00
parent c9f9a6f61b
commit 834b97c34b
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ iris_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
case PIPE_CAP_MAX_GEOMETRY_OUTPUT_VERTICES:
return 256;
case PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS:
return 128;
return 1024;
case PIPE_CAP_MAX_TEXTURE_GATHER_COMPONENTS:
return 4;
case PIPE_CAP_TEXTURE_GATHER_SM5: