| 11476 | } |
| 11477 | |
| 11478 | void APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height) |
| 11479 | { |
| 11480 | if (sglInvalidateSubFramebuffer) |
| 11481 | { |
| 11482 | sglInvalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height); |
| 11483 | ReportGLError("glInvalidateSubFramebuffer"); |
| 11484 | } |
| 11485 | else |
| 11486 | { |
| 11487 | ReportGLNullFunction("glInvalidateSubFramebuffer"); |
| 11488 | } |
| 11489 | |
| 11490 | #if defined(GTE_ENABLE_GLTRACE) |
| 11491 | gsTrace.Call("glInvalidateSubFramebuffer", "", |
| 11492 | gsTrace.GetName(target), numAttachments, |
| 11493 | gsTrace.GetEnumArray(numAttachments, attachments), x, y, width, height); |
| 11494 | #endif |
| 11495 | } |
| 11496 | |
| 11497 | void APIENTRY glMultiDrawArraysIndirect(GLenum mode, const void* indirect, GLsizei drawcount, GLsizei stride) |
| 11498 | { |
nothing calls this directly
no test coverage detected