Dump technique flags

This commit is contained in:
Jan 2022-04-15 17:52:56 +02:00
parent 15fd1ae686
commit 7a89630a13

View File

@ -426,6 +426,8 @@ namespace IW4
void DumpTechnique(const MaterialTechnique* technique) void DumpTechnique(const MaterialTechnique* technique)
{ {
Indent();
m_stream << "// TECHNIQUE FLAGS: 0x" << std::hex << technique->flags << "\n";
for (auto i = 0u; i < technique->passCount; i++) for (auto i = 0u; i < technique->passCount; i++)
DumpPass(technique->passArray[i]); DumpPass(technique->passArray[i]);
} }