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

Function glTexSubImage1D

GTE/Graphics/GL46/GL46.cpp:2258–2269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2256}
2257
2258void APIENTRY glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void* pixels)
2259{
2260 if (sglTexSubImage1D)
2261 {
2262 sglTexSubImage1D(target, level, xoffset, width, format, type, pixels);
2263 ReportGLError("glTexSubImage1D");
2264 }
2265 else
2266 {
2267 ReportGLNullFunction("glTexSubImage1D");
2268 }
2269}
2270
2271void APIENTRY glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void* pixels)
2272{

Callers 2

LoadTextureLevelMethod · 0.85
glTexSubImage1DMethod · 0.85

Calls 2

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85

Tested by

no test coverage detected