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

Function glGetTexImage

GTE/Graphics/GL46/GL46.cpp:1978–1989  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1976}
1977
1978void APIENTRY glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, void* pixels)
1979{
1980 if (sglGetTexImage)
1981 {
1982 sglGetTexImage(target, level, format, type, pixels);
1983 ReportGLError("glGetTexImage");
1984 }
1985 else
1986 {
1987 ReportGLNullFunction("glGetTexImage");
1988 }
1989}
1990
1991void APIENTRY glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params)
1992{

Callers 3

CopyGpuToCpuMethod · 0.85
CopyGpuToCpuMethod · 0.85
glGetTexImageMethod · 0.85

Calls 2

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected