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

Function glTexStorage3D

GTE/Graphics/GL46/GL46.cpp:11118–11135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11116}
11117
11118void APIENTRY glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
11119{
11120 if (sglTexStorage3D)
11121 {
11122 sglTexStorage3D(target, levels, internalformat, width, height, depth);
11123 ReportGLError("glTexStorage3D");
11124 }
11125 else
11126 {
11127 ReportGLNullFunction("glTexStorage3D");
11128 }
11129
11130#if defined(GTE_ENABLE_GLTRACE)
11131 gsTrace.Call("glTexStorage3D", "",
11132 gsTrace.GetName(target), levels, gsTrace.GetName(internalformat),
11133 width, height, depth);
11134#endif
11135}
11136
11137void APIENTRY glDrawTransformFeedbackInstanced(GLenum mode, GLuint id, GLsizei instancecount)
11138{

Callers 3

GL46Texture2ArrayMethod · 0.85
GL46TextureCubeArrayMethod · 0.85
GL46Texture3Method · 0.85

Calls 4

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85
CallMethod · 0.80
GetNameMethod · 0.80

Tested by

no test coverage detected