| 926 | } |
| 927 | |
| 928 | void gte::glDepthMask(GLboolean flag) |
| 929 | { |
| 930 | ::glDepthMask(flag); |
| 931 | ReportGLError("glDepthMask"); |
| 932 | |
| 933 | #if defined(GTE_ENABLE_GLTRACE) |
| 934 | gsTrace.Call("glDepthMask", "", |
| 935 | gsTrace.GetBoolean(flag)); |
| 936 | #endif |
| 937 | } |
| 938 | |
| 939 | void gte::glDisable(GLenum cap) |
| 940 | { |
nothing calls this directly
no test coverage detected