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

Function glGenSamplers

GTE/Graphics/GL46/GL46.cpp:7715–7731  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7713}
7714
7715void APIENTRY glGenSamplers(GLsizei count, GLuint* samplers)
7716{
7717 if (sglGenSamplers)
7718 {
7719 sglGenSamplers(count, samplers);
7720 ReportGLError("glGenSamplers");
7721 }
7722 else
7723 {
7724 ReportGLNullFunction("glGenSamplers");
7725 }
7726
7727#if defined(GTE_ENABLE_GLTRACE)
7728 gsTrace.Call("glGenSamplers", "",
7729 count, gsTrace.GetArray(count, samplers));
7730#endif
7731}
7732
7733void APIENTRY glDeleteSamplers(GLsizei count, const GLuint* samplers)
7734{

Callers 1

GL46SamplerStateMethod · 0.85

Calls 4

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85
CallMethod · 0.80
GetArrayMethod · 0.80

Tested by

no test coverage detected