anv/descriptor_set: Don't fully destroy sets in pool destroy/reset
authorJason Ekstrand <jason@jlekstrand.net>
Thu, 25 Apr 2019 19:15:26 +0000 (14:15 -0500)
committerJason Ekstrand <jason@jlekstrand.net>
Fri, 26 Apr 2019 05:40:28 +0000 (05:40 +0000)
commit934f178341f7ec3bb10e3fa1499198e7988b086f
treea22d8c36832a24a919d206d985c49ab3ec434b30
parentbaf4802e3e92b1512472d553dacbfbb2185c995b
anv/descriptor_set: Don't fully destroy sets in pool destroy/reset

In 105002bd2d617, we fixed a memory leak bug where we weren't properly
destroying descriptor when destroying/resetting a descriptor pool.
However, the only real leak that happened was that we we take a
reference to the descriptor set layout in the descriptor set and we
weren't dropping our reference.  Everything else in the descriptor set
is tied to the pool itself and doesn't need to be freed on a per-set
basis.  This commit changes the destroy/reset functions to only bother
walking the list of sets to unref the layouts and otherwise we just
assume that the whole-pool destroy/reset takes care of the rest.

Now that we're doing more non-trivial things with descriptor sets such
as allocating things with util_vma_heap, per-set destruction is starting
to show up on perf traces.  This takes reset back to where it's supposed
to be as a cheap whole-pool operation.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
src/intel/vulkan/anv_descriptor_set.c