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

Function glClearColor

GTE/Graphics/GL46/GL46.cpp:1648–1659  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1646}
1647
1648void APIENTRY glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
1649{
1650 if (sglClearColor)
1651 {
1652 sglClearColor(red, green, blue, alpha);
1653 ReportGLError("glClearColor");
1654 }
1655 else
1656 {
1657 ReportGLNullFunction("glClearColor");
1658 }
1659}
1660
1661void APIENTRY glClearStencil(GLint s)
1662{

Callers 3

ClearColorBufferMethod · 0.85
ClearBuffersMethod · 0.85
glClearColorMethod · 0.85

Calls 2

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected