Skip to content

Commit b27fd35

Browse files
committed
examples_tests update
1 parent fd86461 commit b27fd35

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/nbl/asset/utils/CSPIRVIntrospector.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ core::smart_refctd_ptr<const CSPIRVIntrospector::CIntrospectionData> CSPIRVIntro
7272
return nullptr;
7373
if (params.cpuShader->getContentType() != IShader::E_CONTENT_TYPE::ECT_SPIRV)
7474
return nullptr;
75-
auto introspectionData = m_introspectionCache.find(params);
76-
if (introspectionData != m_introspectionCache.end())
77-
{
78-
return introspectionData->second;
79-
}
75+
// auto introspectionData = m_introspectionCache.find(params);
76+
// if (introspectionData != m_introspectionCache.end())
77+
// {
78+
// return introspectionData->second;
79+
// }
8080

8181
const ICPUBuffer* spv = params.cpuShader->getContent();
8282
spirv_cross::Compiler comp(reinterpret_cast<const uint32_t*>(spv->getPointer()), spv->getSize()/4u);

0 commit comments

Comments
 (0)