| 161 | } |
| 162 | |
| 163 | void GLSLCompiler::translateDoubleConstant(glsl::astDoubleConstant *expression) { |
| 164 | m_gen.Function.PushStack((float)expression->value); // TODO: double? |
| 165 | } |
| 166 | |
| 167 | void GLSLCompiler::translateBoolConstant(glsl::astBoolConstant *expression) { |
| 168 | m_gen.Function.PushStack((char)expression->value); |
nothing calls this directly
no outgoing calls
no test coverage detected