| 1067 | } |
| 1068 | |
| 1069 | void gte::glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) |
| 1070 | { |
| 1071 | ::glReadPixels(x, y, width, height, format, type, pixels); |
| 1072 | ReportGLError("glReadPixels"); |
| 1073 | |
| 1074 | #if defined(GTE_ENABLE_GLTRACE) |
| 1075 | gsTrace.Call("glReadPixels", "", |
| 1076 | x, y, width, height, gsTrace.GetName(format), gsTrace.GetName(type), "pixels"); |
| 1077 | #endif |
| 1078 | } |
| 1079 | |
| 1080 | void gte::glGetBooleanv(GLenum pname, GLboolean* data) |
| 1081 | { |
nothing calls this directly
no test coverage detected