| 2920 | } |
| 2921 | |
| 2922 | void APIENTRY glBeginQuery(GLenum target, GLuint id) |
| 2923 | { |
| 2924 | if (sglBeginQuery) |
| 2925 | { |
| 2926 | sglBeginQuery(target, id); |
| 2927 | ReportGLError("glBeginQuery"); |
| 2928 | } |
| 2929 | else |
| 2930 | { |
| 2931 | ReportGLNullFunction("glBeginQuery"); |
| 2932 | } |
| 2933 | |
| 2934 | #if defined(GTE_ENABLE_GLTRACE) |
| 2935 | gsTrace.Call("glBeginQuery", "", |
| 2936 | gsTrace.GetName(target), id); |
| 2937 | #endif |
| 2938 | } |
| 2939 | |
| 2940 | void APIENTRY glEndQuery(GLenum target) |
| 2941 | { |
no test coverage detected