| 149 | } |
| 150 | |
| 151 | void GLSLCompiler::translateIntConstant(glsl::astIntConstant *expression) { |
| 152 | m_gen.Function.PushStack((int)expression->value); |
| 153 | } |
| 154 | |
| 155 | void GLSLCompiler::translateUIntConstant(glsl::astUIntConstant *expression) { |
| 156 | m_gen.Function.PushStack((int)expression->value); |
nothing calls this directly
no outgoing calls
no test coverage detected