diff options
| author | Yong He <yonghe@outlook.com> | 2021-06-23 11:33:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-23 11:33:30 -0700 |
| commit | 0f2d11dc994c6323b4bfb955b522f3123e731fe0 (patch) | |
| tree | bc1316bba9217b22f3708dcb03727d70d2d8351a /tools/gfx/vulkan/vk-api.h | |
| parent | 0afa24a3fe7d0e1787cc909f9c7641f477c30e5c (diff) | |
[gfx] Add `IBufferResource::getDeviceAddress()`. (#1892)
Diffstat (limited to 'tools/gfx/vulkan/vk-api.h')
| -rw-r--r-- | tools/gfx/vulkan/vk-api.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/gfx/vulkan/vk-api.h b/tools/gfx/vulkan/vk-api.h index 75b88dd96..4c024525b 100644 --- a/tools/gfx/vulkan/vk-api.h +++ b/tools/gfx/vulkan/vk-api.h @@ -143,6 +143,7 @@ namespace gfx { x(vkGetPhysicalDeviceSurfacePresentModesKHR) \ x(vkGetPhysicalDeviceSurfaceCapabilitiesKHR) \ x(vkDestroySurfaceKHR) \ + /* */ #define VK_API_DEVICE_KHR_PROCS(x) \ @@ -155,6 +156,10 @@ namespace gfx { #define VK_API_DEVICE_OPT_PROCS(x) \ x(vkCmdSetPrimitiveTopologyEXT) \ + x(vkGetBufferDeviceAddress) \ + x(vkGetBufferDeviceAddressKHR) \ + x(vkGetBufferDeviceAddressEXT) \ + /* */ #define VK_API_ALL_GLOBAL_PROCS(x) \ |
