| 3357 | } |
| 3358 | |
| 3359 | void APIENTRY glDrawBuffers(GLsizei n, const GLenum* bufs) |
| 3360 | { |
| 3361 | if (sglDrawBuffers) |
| 3362 | { |
| 3363 | sglDrawBuffers(n, bufs); |
| 3364 | ReportGLError("glDrawBuffers"); |
| 3365 | } |
| 3366 | else |
| 3367 | { |
| 3368 | ReportGLNullFunction("glDrawBuffers"); |
| 3369 | } |
| 3370 | |
| 3371 | #if defined(GTE_ENABLE_GLTRACE) |
| 3372 | gsTrace.Call("glDrawBuffers", "", |
| 3373 | n, gsTrace.GetEnumArray(n, bufs)); |
| 3374 | #endif |
| 3375 | } |
| 3376 | |
| 3377 | void APIENTRY glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass) |
| 3378 | { |
no test coverage detected