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

Function glInvalidateFramebuffer

GTE/Graphics/GL46/GL46.cpp:11459–11476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11457}
11458
11459void APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments)
11460{
11461 if (sglInvalidateFramebuffer)
11462 {
11463 sglInvalidateFramebuffer(target, numAttachments, attachments);
11464 ReportGLError("glInvalidateFramebuffer");
11465 }
11466 else
11467 {
11468 ReportGLNullFunction("glInvalidateFramebuffer");
11469 }
11470
11471#if defined(GTE_ENABLE_GLTRACE)
11472 gsTrace.Call("glInvalidateFramebuffer", "",
11473 gsTrace.GetName(target), numAttachments,
11474 gsTrace.GetEnumArray(numAttachments, attachments));
11475#endif
11476}
11477
11478void APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height)
11479{

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected