Click or drag to resize
Ab4d.SharpEngine logo

VulkanDynamicDescriptorSetFactory Class

VulkanDynamicDescriptorSetFactory can be used to dynamically allocate and free the DescriptorSets.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.CoreComponentBase
    Ab4d.SharpEngine.CoreGpuDeviceComponent
      Ab4d.SharpEngine.UtilitiesVulkanDynamicDescriptorSetFactory

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class VulkanDynamicDescriptorSetFactory : GpuDeviceComponent

The VulkanDynamicDescriptorSetFactory type exposes the following members.

Methods
 NameDescription
Public methodStatic memberCreate Returns a new instance of VulkanDynamicDescriptorSetFactor and a DisposeToken that can be used to dispose the created VulkanDynamicDescriptorSetFactor.
Protected methodDispose
(Overrides ComponentBaseDispose(Boolean))
Public methodFreeDescriptorSets Frees the DescriptorSet that were created by the GetDescriptorSets(Int32, String) method. This method can be called from any thread or from object destructor.
Public methodGetDescriptorSets GetDescriptorSets returns an array of DescriptorSet and an index of the used DescriptorPool. The index is needed when calling FreeDescriptorSets(DescriptorSet, Int32) method. The GetDescriptorSets method can be called only on the main thread (the same thread the VulkanDevice was created on).
Public methodGetReportString Gets the string that describes the used Descriptor pools and the number of allocated DescriptorSets.
Top
See Also