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

Function glGetString

GTE/Graphics/GL46/GL46.cpp:1962–1976  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1960}
1961
1962const GLubyte* APIENTRY glGetString(GLenum name)
1963{
1964 const GLubyte* result;
1965 if (sglGetString)
1966 {
1967 result = sglGetString(name);
1968 ReportGLError("glGetString");
1969 }
1970 else
1971 {
1972 ReportGLNullFunction("glGetString");
1973 result = 0;
1974 }
1975 return result;
1976}
1977
1978void APIENTRY glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, void* pixels)
1979{

Callers 4

glGetStringMethod · 0.85
InitializeOpenGLFunction · 0.85
GLSLReflectionMethod · 0.85
PrintMethod · 0.85

Calls 2

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected