diff options
author | Dave Airlie <[email protected]> | 2014-06-10 14:19:18 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2014-06-11 12:21:08 +1000 |
commit | c82d227edd9c2723c8fe6bfb2e5983e8173608e4 (patch) | |
tree | 55e28eef9a1bed4976fb38c956cd6a87fde04c8f /src | |
parent | 7ea04f089b7379d110f81b4d83464352980a3217 (diff) |
softpipe: bump the softpipe geometry limits
This just aligns the limits with llvmpipe.
Reviewed-by: Roland Scheidegger <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 78517775ecd..cdbba7ddede 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -119,7 +119,7 @@ softpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) return 16*4; case PIPE_CAP_MAX_GEOMETRY_OUTPUT_VERTICES: case PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS: - return 0; + return 1024; case PIPE_CAP_PRIMITIVE_RESTART: return 1; case PIPE_CAP_SHADER_STENCIL_EXPORT: |