| 1133 | } |
| 1134 | |
| 1135 | const GLubyte* gte::glGetString(GLenum name) |
| 1136 | { |
| 1137 | GLubyte const* result = ::glGetString(name); |
| 1138 | ReportGLError("glGetString"); |
| 1139 | |
| 1140 | #if defined(GTE_ENABLE_GLTRACE) |
| 1141 | gsTrace.Call("glGetString", gsTrace.GetString(reinterpret_cast<char const*>(result)), |
| 1142 | gsTrace.GetName(name)); |
| 1143 | #endif |
| 1144 | return result; |
| 1145 | } |
| 1146 | |
| 1147 | void gte::glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, void* pixels) |
| 1148 | { |
nothing calls this directly
no test coverage detected