iris: Track bound constant buffers
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 17 Apr 2019 06:01:41 +0000 (23:01 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 23 Apr 2019 07:24:08 +0000 (00:24 -0700)
This helps avoid having to iterate over [0, PIPE_MAX_CONSTANT_BUFFERS)
looking to see if any resources are bound.

src/gallium/drivers/iris/iris_context.h
src/gallium/drivers/iris/iris_state.c

index f539ab36196b4dd1511eb9845c6dd903429e8414..aa2c43331bf88183c84fb2f31ca30ae0d318ad22 100644 (file)
@@ -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;
 
index 3c3861b7827f1bf1c42edefa64135c393e060347..d87ef27898010f0675e83e1f9ba9364415831edc 100644 (file)
@@ -2465,6 +2465,8 @@ iris_set_constant_buffer(struct pipe_context *ctx,
    struct iris_const_buffer *cbuf = &shs->constbuf[index];
 
    if (input && input->buffer) {
+      shs->bound_cbufs |= 1u << index;
+
       assert(index > 0);
 
       pipe_resource_reference(&cbuf->data.res, input->buffer);
@@ -2475,6 +2477,7 @@ iris_set_constant_buffer(struct pipe_context *ctx,
 
       upload_ubo_surf_state(ice, cbuf, input->buffer_size);
    } else {
+      shs->bound_cbufs &= ~(1u << index);
       pipe_resource_reference(&cbuf->data.res, NULL);
       pipe_resource_reference(&cbuf->surface_state.res, NULL);
    }