diff options
author | Dave Airlie <[email protected]> | 2019-08-27 15:08:19 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-09-04 15:22:20 +1000 |
commit | 4ca40cc3dcbf34988fd614d8539938ffb17ce8ea (patch) | |
tree | 8add01f87dcdb5e117d1ddc908a01f797181a0e8 /src/gallium/drivers/llvmpipe/lp_state.h | |
parent | 775fa81d7bfe8edb72277cfc064d23eb0155151a (diff) |
llvmpipe: add support for compute constant buffers.
This is mostly ported from the fragment shader code.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state.h b/src/gallium/drivers/llvmpipe/lp_state.h index 8f22debed41..ca6e412df0b 100644 --- a/src/gallium/drivers/llvmpipe/lp_state.h +++ b/src/gallium/drivers/llvmpipe/lp_state.h @@ -60,6 +60,7 @@ #define LP_NEW_FS_IMAGES 0x100000 #define LP_CSNEW_CS 0x1 +#define LP_CSNEW_CONSTANTS 0x2 struct vertex_info; struct pipe_context; |