diff options
author | Dave Airlie <[email protected]> | 2019-12-11 13:30:35 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-12-12 10:29:43 +1000 |
commit | 3cd903a6c3b4d0d0744e55e8a537306e99e67d51 (patch) | |
tree | e333d1308afdec527c93f66221359e3e28e12509 /src/gallium/drivers/llvmpipe | |
parent | 75f21895de7c945d8fa9105a5d84a9c568488511 (diff) |
llvmpipe: enable ARB_shader_draw_parameters.
All the bits should be in place for this now.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 6688c6e36c2..94810de8372 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -324,6 +324,8 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) return 1; case PIPE_CAP_QUERY_BUFFER_OBJECT: return 1; + case PIPE_CAP_DRAW_PARAMETERS: + return 1; case PIPE_CAP_MULTISAMPLE_Z_RESOLVE: case PIPE_CAP_RESOURCE_FROM_USER_MEMORY: case PIPE_CAP_DEVICE_RESET_STATUS_QUERY: @@ -332,7 +334,6 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_TGSI_TXQS: case PIPE_CAP_FORCE_PERSAMPLE_INTERP: case PIPE_CAP_SHAREABLE_SHADERS: - case PIPE_CAP_DRAW_PARAMETERS: case PIPE_CAP_TGSI_PACK_HALF_FLOAT: case PIPE_CAP_MULTI_DRAW_INDIRECT: case PIPE_CAP_MULTI_DRAW_INDIRECT_PARAMS: |