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

Method glColorMask

GTE/Graphics/GL46/GL46.cpp:916–926  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

914}
915
916void gte::glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
917{
918 ::glColorMask(red, green, blue, alpha);
919 ReportGLError("glColorMask");
920
921#if defined(GTE_ENABLE_GLTRACE)
922 gsTrace.Call("glColorMask", "",
923 gsTrace.GetBoolean(red), gsTrace.GetBoolean(green),
924 gsTrace.GetBoolean(blue), gsTrace.GetBoolean(alpha));
925#endif
926}
927
928void gte::glDepthMask(GLboolean flag)
929{

Callers

nothing calls this directly

Calls 4

glColorMaskFunction · 0.85
ReportGLErrorFunction · 0.85
CallMethod · 0.80
GetBooleanMethod · 0.45

Tested by

no test coverage detected