| 848 | } |
| 849 | |
| 850 | void gte::glDrawBuffer(GLenum mode) |
| 851 | { |
| 852 | ::glDrawBuffer(mode); |
| 853 | ReportGLError("glDrawBuffer"); |
| 854 | |
| 855 | #if defined(GTE_ENABLE_GLTRACE) |
| 856 | gsTrace.Call("glDrawBuffer", "", |
| 857 | gsTrace.GetName(mode)); |
| 858 | #endif |
| 859 | } |
| 860 | |
| 861 | void gte::glClear(GLbitfield mask) |
| 862 | { |
nothing calls this directly
no test coverage detected