 |
VulkanDeviceDisposeVulkanResourceOnMainThreadAfterFrameRendered Method |
DisposeVulkanResourceOnMainThreadAfterFrameRendered method disposes the Vulkan resources with the specified type and handle
on the main thread and after the rendering of the current frame is complete and the GPU resources for that frame are no longer used.
If this is called on the main thread and if the current frame is already fully rendered (for example after calling
WaitUntilIdle,
then the specified Vulkan resource is immediately disposed.
This method can be called from any thread.
Namespace: Ab4d.SharpEngine.VulkanAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntaxpublic void DisposeVulkanResourceOnMainThreadAfterFrameRendered(
ulong vulkanHandle,
Type vulkanType
)
Parameters
- vulkanHandle UInt64
- vulkanHandle as ulong
- vulkanType Type
- vulkan type, for example typeof(PipelineLayout) or typeof(DescriptorSetLayout)
See Also