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

Method glClearColor

GTE/Graphics/GL46/GL46.cpp:872–881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

870}
871
872void gte::glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
873{
874 ::glClearColor(red, green, blue, alpha);
875 ReportGLError("glClearColor");
876
877#if defined(GTE_ENABLE_GLTRACE)
878 gsTrace.Call("glClearColor", "",
879 red, green, blue, alpha);
880#endif
881}
882
883void gte::glClearStencil(GLint s)
884{

Callers

nothing calls this directly

Calls 3

glClearColorFunction · 0.85
ReportGLErrorFunction · 0.85
CallMethod · 0.80

Tested by

no test coverage detected