2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-02 22:47:42 +00:00

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)
{
Indent();
m_stream << "// TECHNIQUE FLAGS: 0x" << std::hex << technique->flags << "\n";
for (auto i = 0u; i < technique->passCount; i++)
DumpPass(technique->passArray[i]);
}