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

Function glGetError

GTE/Graphics/GL46/GL46.cpp:1921–1934  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1919}
1920
1921GLenum APIENTRY glGetError()
1922{
1923 GLenum result;
1924 if (sglGetError)
1925 {
1926 result = sglGetError();
1927 }
1928 else
1929 {
1930 ReportGLNullFunction("glGetError");
1931 result = 0;
1932 }
1933 return result;
1934}
1935
1936void APIENTRY glGetFloatv(GLenum pname, GLfloat* data)
1937{

Callers 2

ReportGLErrorFunction · 0.85
glGetErrorMethod · 0.85

Calls 1

ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected