| 12957 | } |
| 12958 | |
| 12959 | void 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 | |
| 12978 | void APIENTRY glInvalidateNamedFramebufferSubData(GLuint framebuffer, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height) |
| 12979 | { |
nothing calls this directly
no test coverage detected