| 205 | } |
| 206 | |
| 207 | void GLSLCompiler::translatePrecision(int precision) { |
| 208 | // TODO |
| 209 | switch (precision) { |
| 210 | case glsl::kLowp: break; |
| 211 | case glsl::kMediump: break; |
| 212 | case glsl::kHighp: break; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | void GLSLCompiler::translateGlobalVariable(glsl::astGlobalVariable *variable) { |
| 217 | m_globals.push_back(Variable()); |
nothing calls this directly
no outgoing calls
no test coverage detected