MCPcopy Create free account
hub / github.com/davideberly/GeometricTools / glReadPixels

Function glReadPixels

GTE/Graphics/GL46/GL46.cpp:1882–1893  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1880}
1881
1882void 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
1895void APIENTRY glGetBooleanv(GLenum pname, GLboolean* data)
1896{

Callers 1

glReadPixelsMethod · 0.85

Calls 2

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected