| 6 | namespace ZEngine::Rendering::Shaders::Compilers { |
| 7 | |
| 8 | CompilationStage::CompilationStage() { |
| 9 | m_next_stage = std::make_shared<LinkageStage>(); |
| 10 | } |
| 11 | |
| 12 | CompilationStage::~CompilationStage() {} |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected