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

Function glDeleteProgram

GTE/Graphics/GL46/GL46.cpp:3527–3543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3525}
3526
3527void APIENTRY glDeleteProgram(GLuint program)
3528{
3529 if (sglDeleteProgram)
3530 {
3531 sglDeleteProgram(program);
3532 ReportGLError("glDeleteProgram");
3533 }
3534 else
3535 {
3536 ReportGLNullFunction("glDeleteProgram");
3537 }
3538
3539#if defined(GTE_ENABLE_GLTRACE)
3540 gsTrace.Call("glDeleteProgram", "",
3541 program);
3542#endif
3543}
3544
3545void APIENTRY glDeleteShader(GLuint shader)
3546{

Callers 4

CreateFromNamedSourceMethod · 0.85
~GLSLComputeProgramMethod · 0.85
~GLSLVisualProgramMethod · 0.85

Calls 3

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85
CallMethod · 0.80

Tested by

no test coverage detected