aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2024-03-20 10:05:05 -0500
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2024-03-25 14:47:27 -0500
commitdfff155a761e1f37abf8b364f5cd50374453874c (patch)
tree85b77b3f9bec5ef31774d38c1d0c31378a0c89ca
parent934b5f7c13374949527b71b9732b93b5bc0fcc3e (diff)
downloadusermoji-dfff155a761e1f37abf8b364f5cd50374453874c.tar.xz
vulkaninfo: Don't print HostImageCopyProperites in Profiles
The JSON format doesn't contain it so it shouldn't be included.
-rw-r--r--vulkaninfo/vulkaninfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/vulkaninfo/vulkaninfo.cpp b/vulkaninfo/vulkaninfo.cpp
index 2795e5e9..64895944 100644
--- a/vulkaninfo/vulkaninfo.cpp
+++ b/vulkaninfo/vulkaninfo.cpp
@@ -209,7 +209,7 @@ void DumpSurfaceCapabilities(Printer &p, AppInstance &inst, AppGpu &gpu, AppSurf
p.PrintKeyValue("minImageCount", surface_caps2.surfaceCapabilities.minImageCount);
p.PrintKeyValue("maxImageCount", surface_caps2.surfaceCapabilities.maxImageCount);
-
+
DumpVkSurfacePresentScalingCapabilitiesEXT(p, "VkSurfacePresentScalingCapabilitiesEXT",
SurfacePresentScalingCapabilitiesEXT);
DumpVkSurfacePresentModeCompatibilityEXT(p, "VkSurfacePresentModeCompatibilityEXT",
@@ -700,7 +700,6 @@ void DumpGpuProfileCapabilities(Printer &p, AppGpu &gpu) {
if (gpu.inst.CheckExtensionEnabled(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME)) {
void *place = gpu.props2.pNext;
chain_iterator_phys_device_props2(p, gpu.inst, gpu, place);
- GetAndDumpHostImageCopyPropertiesEXT(p, gpu);
}
}
{