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

Method glTexSubImage1D

GTE/Graphics/GL46/GL46.cpp:1327–1337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1325}
1326
1327void gte::glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void* pixels)
1328{
1329 ::glTexSubImage1D(target, level, xoffset, width, format, type, pixels);
1330 ReportGLError("glTexSubImage1D");
1331
1332#if defined(GTE_ENABLE_GLTRACE)
1333 gsTrace.Call("glTexSubImage1D", "",
1334 gsTrace.GetName(target), level, xoffset, width,
1335 gsTrace.GetName(format), gsTrace.GetName(type), "pixels");
1336#endif
1337}
1338
1339void gte::glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void* pixels)
1340{

Callers

nothing calls this directly

Calls 4

glTexSubImage1DFunction · 0.85
ReportGLErrorFunction · 0.85
CallMethod · 0.80
GetNameMethod · 0.80

Tested by

no test coverage detected