wisdom
Loading...
Searching...
No Matches
wisDestroyInstance Struct Reference

Detailed Description

Specification


To destroy a Wisdom instance, call:

C Version:

// Provided by Wisdom 0.7.0.
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKDestroyInstance(WisVKInstance* self);
// Provided by Wisdom 0.7.0.
void wisDX12DestroyInstance(WisDX12Instance* self);

Parameters


  • this self self is a pointer to the valid WisInstance instance.

Description


In contrast to similar vkDestroyInstance in Vulkan, wisDestroyInstance does not require all the objects to be destroyed prior to its invocation. The resources created under the instance continue to exist after the instance is destroyed, and are cleaned up automatically when their respective handles are destroyed.

See Also