| 11457 | } |
| 11458 | |
| 11459 | void 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 | |
| 11478 | void APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height) |
| 11479 | { |
nothing calls this directly
no test coverage detected