| 937 | } |
| 938 | |
| 939 | void gte::glDisable(GLenum cap) |
| 940 | { |
| 941 | ::glDisable(cap); |
| 942 | ReportGLError("glDisable"); |
| 943 | |
| 944 | #if defined(GTE_ENABLE_GLTRACE) |
| 945 | gsTrace.Call("glDisable", "", |
| 946 | gsTrace.GetName(cap)); |
| 947 | #endif |
| 948 | } |
| 949 | |
| 950 | void gte::glEnable(GLenum cap) |
| 951 | { |
nothing calls this directly
no test coverage detected