-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make extention functions to be optional (#1052)
- Loading branch information
1 parent
910c29f
commit 0d2f7e7
Showing
3 changed files
with
71 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
AMBER_VK_FUNC(vkGetPhysicalDeviceProperties2) | ||
AMBER_VK_FUNC(vkCreateRayTracingPipelinesKHR) | ||
AMBER_VK_FUNC(vkCreateAccelerationStructureKHR) | ||
AMBER_VK_FUNC(vkDestroyAccelerationStructureKHR) | ||
AMBER_VK_FUNC(vkGetAccelerationStructureBuildSizesKHR) | ||
AMBER_VK_FUNC(vkBuildAccelerationStructuresKHR) | ||
AMBER_VK_FUNC(vkCmdBuildAccelerationStructuresKHR) | ||
AMBER_VK_FUNC(vkGetAccelerationStructureDeviceAddressKHR) | ||
AMBER_VK_FUNC(vkCmdTraceRaysKHR) | ||
AMBER_VK_FUNC(vkGetRayTracingShaderGroupHandlesKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkCreateRayTracingPipelinesKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkCreateAccelerationStructureKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkDestroyAccelerationStructureKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkGetAccelerationStructureBuildSizesKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkBuildAccelerationStructuresKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkCmdBuildAccelerationStructuresKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkGetAccelerationStructureDeviceAddressKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkCmdTraceRaysKHR) | ||
OPTIONAL AMBER_VK_FUNC(vkGetRayTracingShaderGroupHandlesKHR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters