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

Function glInvalidateNamedFramebufferData

GTE/Graphics/GL46/GL46.cpp:12959–12976  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12957}
12958
12959void APIENTRY glInvalidateNamedFramebufferData(GLuint framebuffer, GLsizei numAttachments, const GLenum* attachments)
12960{
12961 if (sglInvalidateNamedFramebufferData)
12962 {
12963 sglInvalidateNamedFramebufferData(framebuffer, numAttachments, attachments);
12964 ReportGLError("glInvalidateNamedFramebufferData");
12965 }
12966 else
12967 {
12968 ReportGLNullFunction("glInvalidateNamedFramebufferData");
12969 }
12970
12971#if defined(GTE_ENABLE_GLTRACE)
12972 gsTrace.Call("glInvalidateNamedFramebufferData", "",
12973 framebuffer, numAttachments,
12974 gsTrace.GetEnumArray(numAttachments, attachments));
12975#endif
12976}
12977
12978void APIENTRY glInvalidateNamedFramebufferSubData(GLuint framebuffer, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height)
12979{

Callers

nothing calls this directly

Calls 4

ReportGLErrorFunction · 0.85
ReportGLNullFunctionFunction · 0.85
CallMethod · 0.80
GetEnumArrayMethod · 0.80

Tested by

no test coverage detected