| 1246 | } |
| 1247 | |
| 1248 | void gte::glDrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices) |
| 1249 | { |
| 1250 | ::glDrawElements(mode, count, type, indices); |
| 1251 | ReportGLError("glDrawElements"); |
| 1252 | |
| 1253 | #if defined(GTE_ENABLE_GLTRACE) |
| 1254 | gsTrace.Call("glDrawElements", "", |
| 1255 | gsTrace.GetName(mode), count, gsTrace.GetName(type), "indices"); |
| 1256 | #endif |
| 1257 | } |
| 1258 | |
| 1259 | void gte::glGetPointerv(GLenum pname, void** params) |
| 1260 | { |
nothing calls this directly
no test coverage detected