From 2e1275e085ad4ef2b61d3b4b77a199724e0f6d6b Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sun, 12 Sep 2021 09:42:07 +0100 Subject: [PATCH] Cleanup of logging Signed-off-by: Alejandro Saucedo --- src/Algorithm.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Algorithm.cpp b/src/Algorithm.cpp index 69ab5f7ad..a59f34f75 100644 --- a/src/Algorithm.cpp +++ b/src/Algorithm.cpp @@ -340,19 +340,12 @@ Algorithm::recordBindPush(const vk::CommandBuffer& commandBuffer) if (this->mPushConstantsSize) { KP_LOG_DEBUG("Kompute Algorithm binding push constants size: {}", this->mPushConstantsSize); - KP_LOG_DEBUG("{} {}", - this->mPushConstantsDataTypeMemorySize, - this->mPushConstantsData == nullptr); - KP_LOG_DEBUG("{}", - ((float*)this->mPushConstantsData)[0]); commandBuffer.pushConstants(*this->mPipelineLayout, vk::ShaderStageFlagBits::eCompute, 0, this->mPushConstantsSize * this->mPushConstantsDataTypeMemorySize, this->mPushConstantsData); - KP_LOG_DEBUG("Constants bound: {}", - this->mPushConstantsSize); } }