diff options
author | Timur Kristóf <[email protected]> | 2019-06-14 14:03:28 +0200 |
---|---|---|
committer | Timur Kristóf <[email protected]> | 2019-06-23 18:33:23 +0200 |
commit | 3b6d787e404181758227e205eda03600b25c1fd9 (patch) | |
tree | a492653d635a0033c43b7649bcb60dfbe5c7ea1d /src/gallium/drivers/iris/iris_context.h | |
parent | ebc8c20b3e688edf7b0157774572251444d33b04 (diff) |
iris: move sysvals to their own constant buffer
This commit moves the sysvals to a separate, new constant buffer
at the end (before the shader constants). It also allows us to
remove the special handling we had for cbuf0, and enables all
constant buffers to support user-specified resources and user
buffers.
v2: (by Kenneth Graunke)
- Rebase on the previous patch to fix system value uploading.
- Fix disk cache num_cbufs calculation
- Fix passthrough TCS to report num_cbufs = 1 so upload actually occurs
- Change upload_sysvals to assert that num_cbufs > 0 when
num_system_values > 0.
Signed-off-by: Timur Kristóf <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/drivers/iris/iris_context.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index dbaec560bc5..7b72c41a939 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -357,8 +357,7 @@ struct iris_shader_state { struct pipe_shader_buffer constbuf[PIPE_MAX_CONSTANT_BUFFERS]; struct iris_state_ref constbuf_surf_state[PIPE_MAX_CONSTANT_BUFFERS]; - struct pipe_constant_buffer cbuf0; - bool cbuf0_needs_upload; + bool sysvals_need_upload; /** Shader Storage Buffers */ struct pipe_shader_buffer ssbo[PIPE_MAX_SHADER_BUFFERS]; |