| 895 | m_gen.Function.CallReturnMethod(expr->function->name, expr->numArguments); |
| 896 | } |
| 897 | void HLSLCompiler::translateAttributes(M4::HLSLAttribute* attribute) |
| 898 | { |
| 899 | while (attribute != NULL) |
| 900 | { |
| 901 | attribute = attribute->nextAttribute; |
| 902 | } |
| 903 | } |
| 904 | void HLSLCompiler::translateArrayAccess(M4::HLSLArrayAccess* expr) |
| 905 | { |
| 906 | translateExpression(expr->index); |
nothing calls this directly
no outgoing calls
no test coverage detected