anv/descriptor_set: Put the whole state in the state free list
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 11 Nov 2016 00:27:47 +0000 (16:27 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Thu, 17 Nov 2016 01:07:35 +0000 (17:07 -0800)
We're not really saving much by just putting the offset in there.

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
src/intel/vulkan/anv_descriptor_set.c

index 88df5456fd11df7b588b83ad059e92d3c93b8742..97108fad420d5518d842e093461ef291efcd7526 100644 (file)
@@ -393,7 +393,7 @@ layout_size(const struct anv_descriptor_set_layout *layout)
 
 struct surface_state_free_list_entry {
    void *next;
-   uint32_t offset;
+   struct anv_state state;
 };
 
 VkResult
@@ -463,10 +463,9 @@ anv_descriptor_set_create(struct anv_device *device,
       struct anv_state state;
 
       if (entry) {
-         state.map = entry;
-         state.offset = entry->offset;
-         state.alloc_size = 64;
+         state = entry->state;
          pool->surface_state_free_list = entry->next;
+         assert(state.alloc_size == 64);
       } else {
          state = anv_state_stream_alloc(&pool->surface_state_stream, 64, 64);
       }
@@ -489,7 +488,7 @@ anv_descriptor_set_destroy(struct anv_device *device,
       struct surface_state_free_list_entry *entry =
          set->buffer_views[b].surface_state.map;
       entry->next = pool->surface_state_free_list;
-      entry->offset = set->buffer_views[b].surface_state.offset;
+      entry->state = set->buffer_views[b].surface_state;
       pool->surface_state_free_list = entry;
    }