MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Tools / CreateShaderModule

Function CreateShaderModule

icd/generated/function_definitions.h:700–705  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

698 // Destroy object
699}
700static VKAPI_ATTR VkResult VKAPI_CALL CreateShaderModule(VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo,
701 const VkAllocationCallbacks* pAllocator, VkShaderModule* pShaderModule) {
702 unique_lock_t lock(global_lock);
703 *pShaderModule = (VkShaderModule)global_unique_handle++;
704 return VK_SUCCESS;
705}
706static VKAPI_ATTR void VKAPI_CALL DestroyShaderModule(VkDevice device, VkShaderModule shaderModule,
707 const VkAllocationCallbacks* pAllocator) {
708 // Destroy object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected