| 1428 | } |
| 1429 | |
| 1430 | void GLSLCompiler::translateDeclarationStatement(glsl::astDeclarationStatement *statement) { |
| 1431 | for (size_t i = 0; i < statement->variables.size(); i++) |
| 1432 | translateDeclarationVariable(statement->variables[i]); |
| 1433 | } |
| 1434 | |
| 1435 | void GLSLCompiler::translateExpressionStatement(glsl::astExpressionStatement *statement) { |
| 1436 | translateExpression(statement->expression); |