diff options
author | Kenneth Graunke <[email protected]> | 2019-04-16 23:01:41 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-04-23 00:24:08 -0700 |
commit | 00d4019676ee879622fd4dbe0234d6c44de04725 (patch) | |
tree | d02cbefb191a4aead042726de3cb66000dc776b5 /src/gallium/drivers/iris/iris_context.h | |
parent | 4d1223607278ca771bd9ba82ca52cd78893dc79d (diff) |
iris: Track bound constant buffers
This helps avoid having to iterate over [0, PIPE_MAX_CONSTANT_BUFFERS)
looking to see if any resources are bound.
Diffstat (limited to 'src/gallium/drivers/iris/iris_context.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index f539ab36196..aa2c43331bf 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -322,6 +322,9 @@ struct iris_shader_state { struct iris_sampler_state *samplers[IRIS_MAX_TEXTURE_SAMPLERS]; struct iris_sampler_view *textures[IRIS_MAX_TEXTURE_SAMPLERS]; + /** Bitfield of which constant buffers are bound (non-null). */ + uint32_t bound_cbufs; + /** Bitfield of which image views are bound (non-null). */ uint32_t bound_image_views; |