| 1867 | } |
| 1868 | |
| 1869 | void APIENTRY glReadBuffer(GLenum src) |
| 1870 | { |
| 1871 | if (sglReadBuffer) |
| 1872 | { |
| 1873 | sglReadBuffer(src); |
| 1874 | ReportGLError("glReadBuffer"); |
| 1875 | } |
| 1876 | else |
| 1877 | { |
| 1878 | ReportGLNullFunction("glReadBuffer"); |
| 1879 | } |
| 1880 | } |
| 1881 | |
| 1882 | void APIENTRY glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) |
| 1883 | { |
no test coverage detected