| 1330 | |
| 1331 | |
| 1332 | void GLSLCompiler::translateSequence(glsl::astSequenceExpression *expression) { |
| 1333 | m_exportLine(expression); |
| 1334 | |
| 1335 | translateExpression(expression->operand1); |
| 1336 | translateExpression(expression->operand2); |
| 1337 | } |
| 1338 | |
| 1339 | void GLSLCompiler::translateOperation(glsl::astOperationExpression *expression) { |
| 1340 | GLSLCompiler::ExpressionType lType = evaluateExpressionType(expression->operand1); |
nothing calls this directly
no outgoing calls
no test coverage detected