diff options
| author | Charles Giessen <charles@lunarg.com> | 2020-04-07 20:33:25 -0600 |
|---|---|---|
| committer | Charles Giessen <46324611+charles-lunarg@users.noreply.github.com> | 2020-04-08 16:39:49 -0600 |
| commit | bb32b2a7016893617453ff9a3dba2a7a17c57b9b (patch) | |
| tree | a309280f522af40450e2bd8dc40f5ad0785838cf /vulkaninfo/vulkaninfo.cpp | |
| parent | 768a6917c099d39bf7959fe045e3b09ff55cfd2b (diff) | |
| download | usermoji-bb32b2a7016893617453ff9a3dba2a7a17c57b9b.tar.xz | |
vulkaninfo: dynamically link vulkan on apple
Due to difficulties setting up dynamic library loading on apple,
the change to use dynamic loading has been reverted to a dynamic link.
Change-Id: If980a327aa07669cc00aa4847dd4339a0ae42804
Diffstat (limited to 'vulkaninfo/vulkaninfo.cpp')
| -rw-r--r-- | vulkaninfo/vulkaninfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vulkaninfo/vulkaninfo.cpp b/vulkaninfo/vulkaninfo.cpp index d81749b4..ef2f621b 100644 --- a/vulkaninfo/vulkaninfo.cpp +++ b/vulkaninfo/vulkaninfo.cpp @@ -641,7 +641,7 @@ void GpuDevDump(Printer &p, AppGpu &gpu) { VkFormat fmt = static_cast<VkFormat>(fmt_counter); VkFormatProperties props; - gpu.inst.dll.vkGetPhysicalDeviceFormatProperties(gpu.phys_device, fmt, &props); + gpu.inst.dll.fp_vkGetPhysicalDeviceFormatProperties(gpu.phys_device, fmt, &props); GpuDumpFormatProperty(p, fmt, props); } @@ -660,7 +660,7 @@ void GpuDevDumpJson(Printer &p, AppGpu &gpu) { VkFormat fmt = static_cast<VkFormat>(fmt_counter); VkFormatProperties props; - gpu.inst.dll.vkGetPhysicalDeviceFormatProperties(gpu.phys_device, fmt, &props); + gpu.inst.dll.fp_vkGetPhysicalDeviceFormatProperties(gpu.phys_device, fmt, &props); // don't print format properties that are unsupported if ((props.linearTilingFeatures || props.optimalTilingFeatures || props.bufferFeatures) == 0) continue; |
