| 256 | } |
| 257 | |
| 258 | HLSLCompiler::HLSLCompiler() |
| 259 | { |
| 260 | m_language = Compiler::Language::HLSL; |
| 261 | m_isInsideBuffer = false; |
| 262 | m_currentFunction = ""; |
| 263 | m_entryFunction = ""; |
| 264 | m_isSet = m_usePointer = false; |
| 265 | m_caseIfDefault = false; |
| 266 | m_caseIfAddr = 0; |
| 267 | } |
| 268 | HLSLCompiler::~HLSLCompiler() |
| 269 | { |
| 270 | } |
nothing calls this directly
no outgoing calls
no test coverage detected