| 1880 | } |
| 1881 | |
| 1882 | void APIENTRY glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) |
| 1883 | { |
| 1884 | if (sglReadPixels) |
| 1885 | { |
| 1886 | sglReadPixels(x, y, width, height, format, type, pixels); |
| 1887 | ReportGLError("glReadPixels"); |
| 1888 | } |
| 1889 | else |
| 1890 | { |
| 1891 | ReportGLNullFunction("glReadPixels"); |
| 1892 | } |
| 1893 | } |
| 1894 | |
| 1895 | void APIENTRY glGetBooleanv(GLenum pname, GLboolean* data) |
| 1896 | { |
no test coverage detected