| 165 | } |
| 166 | |
| 167 | void GLSLCompiler::translateBoolConstant(glsl::astBoolConstant *expression) { |
| 168 | m_gen.Function.PushStack((char)expression->value); |
| 169 | } |
| 170 | |
| 171 | void GLSLCompiler::translateArraySize(const glsl::vector<glsl::astConstantExpression*> &arraySizes) { |
| 172 | for (size_t i = 0; i < arraySizes.size(); i++) |
nothing calls this directly
no outgoing calls
no test coverage detected