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

Function glGetProgramInfoLog

GTE/Graphics/GL46/GL46.cpp:3710–3726  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3708}
3709
3710void APIENTRY glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei* length, GLchar* infoLog)
3711{
3712 if (sglGetProgramInfoLog)
3713 {
3714 sglGetProgramInfoLog(program, bufSize, length, infoLog);
3715 ReportGLError("glGetProgramInfoLog");
3716 }
3717 else
3718 {
3719 ReportGLNullFunction("glGetProgramInfoLog");
3720 }
3721
3722#if defined(GTE_ENABLE_GLTRACE)
3723 gsTrace.Call("glGetProgramInfoLog", "",
3724 program, bufSize, *length, infoLog);
3725#endif
3726}
3727
3728void APIENTRY glGetShaderiv(GLuint shader, GLenum pname, GLint* params)
3729{

Callers 1

LinkMethod · 0.85

Calls 3

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85
CallMethod · 0.80

Tested by

no test coverage detected