| 7713 | } |
| 7714 | |
| 7715 | void APIENTRY glGenSamplers(GLsizei count, GLuint* samplers) |
| 7716 | { |
| 7717 | if (sglGenSamplers) |
| 7718 | { |
| 7719 | sglGenSamplers(count, samplers); |
| 7720 | ReportGLError("glGenSamplers"); |
| 7721 | } |
| 7722 | else |
| 7723 | { |
| 7724 | ReportGLNullFunction("glGenSamplers"); |
| 7725 | } |
| 7726 | |
| 7727 | #if defined(GTE_ENABLE_GLTRACE) |
| 7728 | gsTrace.Call("glGenSamplers", "", |
| 7729 | count, gsTrace.GetArray(count, samplers)); |
| 7730 | #endif |
| 7731 | } |
| 7732 | |
| 7733 | void APIENTRY glDeleteSamplers(GLsizei count, const GLuint* samplers) |
| 7734 | { |
no test coverage detected