diff --git a/openVulkanoCpp/Vulkan/DepthBufferQuery.cpp b/openVulkanoCpp/Vulkan/DepthBufferQuery.cpp index 74841ab..3b2b376 100644 --- a/openVulkanoCpp/Vulkan/DepthBufferQuery.cpp +++ b/openVulkanoCpp/Vulkan/DepthBufferQuery.cpp @@ -55,12 +55,6 @@ namespace OpenVulkano::Vulkan if (cpuDepthBuffer[0] == -2) return -2; if (cpuDepthBuffer[SAMPLE_CENTER] > 0 && cpuDepthBuffer[SAMPLE_CENTER] < 1) return cpuDepthBuffer[SAMPLE_CENTER]; std::sort(cpuDepthBuffer, cpuDepthBuffer + SAMPLE_SIZE); - Logger::APP->info("Depth Values: ({}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {})", - cpuDepthBuffer[0], cpuDepthBuffer[1], cpuDepthBuffer[2], cpuDepthBuffer[3], cpuDepthBuffer[4], - cpuDepthBuffer[5], cpuDepthBuffer[6], cpuDepthBuffer[7], cpuDepthBuffer[8], cpuDepthBuffer[9], - cpuDepthBuffer[10], cpuDepthBuffer[11], cpuDepthBuffer[12], cpuDepthBuffer[13], cpuDepthBuffer[14], - cpuDepthBuffer[15], cpuDepthBuffer[16], cpuDepthBuffer[17], cpuDepthBuffer[18], cpuDepthBuffer[19], - cpuDepthBuffer[20], cpuDepthBuffer[21], cpuDepthBuffer[22], cpuDepthBuffer[23], cpuDepthBuffer[24]); uint32_t start = UINT32_MAX, end = UINT32_MAX; for (uint32_t i = 0; i < SAMPLE_SIZE; i++) {