public void Dispose()
 {
     _holder?.FreeDescriptorSets(this);
     _holder = null;
 }
 public DescriptorSetCollection(DescriptorSetManager.DescriptorPoolHolder holder, DescriptorSet[] descriptorSets)
 {
     _holder         = holder;
     _descriptorSets = descriptorSets;
 }