| 469 | return true; |
| 470 | } |
| 471 | void HLSLCompiler::translateExpressionList(M4::HLSLExpression* expression) |
| 472 | { |
| 473 | int numExpressions = 0; |
| 474 | while (expression != NULL) |
| 475 | { |
| 476 | translateExpression(expression); |
| 477 | expression = expression->nextExpression; |
| 478 | ++numExpressions; |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | void HLSLCompiler::translateExpression(M4::HLSLExpression* expression) |
| 483 | { |
nothing calls this directly
no outgoing calls
no test coverage detected