diff --git a/src/dxbc/dxbc_chunk_isgn.cpp b/src/dxbc/dxbc_chunk_isgn.cpp index d456a8c0c..80e540f23 100644 --- a/src/dxbc/dxbc_chunk_isgn.cpp +++ b/src/dxbc/dxbc_chunk_isgn.cpp @@ -87,20 +87,6 @@ namespace dxvk { return result; } - void DxbcIsgn::printEntries() const { - for (auto entry = this->begin(); entry != this->end(); entry++) { - Logger::debug(str::format("SGN Entry:\n\t", - "semanticName: ", entry->semanticName, "\n\t", - "semanticIndex: ", entry->semanticIndex, "\n\t", - "registerId: ", entry->registerId, "\n\t", - "componentMask: ", entry->componentMask.maskString(), "\n\t", - "componentType: ", entry->componentType, "\n\t", - "systemValue: ", entry->systemValue, "\n\t", - "streamId: ", entry->streamId, "\n", - "\n")); - } - } - bool DxbcIsgn::compareSemanticNames( const std::string& a, const std::string& b) { diff --git a/src/dxbc/dxbc_chunk_isgn.h b/src/dxbc/dxbc_chunk_isgn.h index 87684016f..9b4b79186 100644 --- a/src/dxbc/dxbc_chunk_isgn.h +++ b/src/dxbc/dxbc_chunk_isgn.h @@ -54,8 +54,6 @@ namespace dxvk { uint32_t registerId) const; uint32_t maxRegisterCount() const; - - void printEntries() const; static bool compareSemanticNames( const std::string& a, diff --git a/src/dxbc/dxbc_compiler.cpp b/src/dxbc/dxbc_compiler.cpp index 9e58e6497..e4de077ef 100644 --- a/src/dxbc/dxbc_compiler.cpp +++ b/src/dxbc/dxbc_compiler.cpp @@ -30,21 +30,6 @@ namespace dxvk { m_module.addDebugString(fileName.c_str()), nullptr); - if (Logger::logLevel() <= LogLevel::Debug) { - if (m_isgn != nullptr) { - Logger::debug(str::format("Input Signature for - ", fileName.c_str(), "\n")); - m_isgn->printEntries(); - } - if (m_osgn != nullptr) { - Logger::debug(str::format("Output Signature for - ", fileName.c_str(), "\n")); - m_osgn->printEntries(); - } - if (m_psgn != nullptr) { - Logger::debug(str::format("Patch Constant Signature for - ", fileName.c_str(), "\n")); - m_psgn->printEntries(); - } - } - // Set the memory model. This is the same for all shaders. m_module.enableCapability( spv::CapabilityVulkanMemoryModel);