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

Function glGenFramebuffers

GTE/Graphics/GL46/GL46.cpp:6571–6587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6569}
6570
6571void APIENTRY glGenFramebuffers(GLsizei n, GLuint* framebuffers)
6572{
6573 if (sglGenFramebuffers)
6574 {
6575 sglGenFramebuffers(n, framebuffers);
6576 ReportGLError("glGenFramebuffers");
6577 }
6578 else
6579 {
6580 ReportGLNullFunction("glGenFramebuffers");
6581 }
6582
6583#if defined(GTE_ENABLE_GLTRACE)
6584 gsTrace.Call("glGenFramebuffers", "",
6585 n, gsTrace.GetArray(n, framebuffers));
6586#endif
6587}
6588
6589GLenum APIENTRY glCheckFramebufferStatus(GLenum target)
6590{

Callers 1

GL46DrawTargetMethod · 0.85

Calls 4

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

Tested by

no test coverage detected