| 462 | } |
| 463 | |
| 464 | bool HLSLCompiler::translate(M4::HLSLTree* tree) |
| 465 | { |
| 466 | M4::HLSLRoot* root = tree->GetRoot(); |
| 467 | translateStatements(root->statement); |
| 468 | |
| 469 | return true; |
| 470 | } |
| 471 | void HLSLCompiler::translateExpressionList(M4::HLSLExpression* expression) |
| 472 | { |
| 473 | int numExpressions = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected