| 12921 | } |
| 12922 | |
| 12923 | void APIENTRY glNamedFramebufferDrawBuffers(GLuint framebuffer, GLsizei n, const GLenum* bufs) |
| 12924 | { |
| 12925 | if (sglNamedFramebufferDrawBuffers) |
| 12926 | { |
| 12927 | sglNamedFramebufferDrawBuffers(framebuffer, n, bufs); |
| 12928 | ReportGLError("glNamedFramebufferDrawBuffers"); |
| 12929 | } |
| 12930 | else |
| 12931 | { |
| 12932 | ReportGLNullFunction("glNamedFramebufferDrawBuffers"); |
| 12933 | } |
| 12934 | |
| 12935 | #if defined(GTE_ENABLE_GLTRACE) |
| 12936 | gsTrace.Call("glNamedFramebufferDrawBuffers", "", |
| 12937 | framebuffer, n, gsTrace.GetEnumArray(n, bufs)); |
| 12938 | #endif |
| 12939 | } |
| 12940 | |
| 12941 | void APIENTRY glNamedFramebufferReadBuffer(GLuint framebuffer, GLenum src) |
| 12942 | { |
nothing calls this directly
no test coverage detected