| 2191 | } |
| 2192 | |
| 2193 | void APIENTRY glPolygonOffset(GLfloat factor, GLfloat units) |
| 2194 | { |
| 2195 | if (sglPolygonOffset) |
| 2196 | { |
| 2197 | sglPolygonOffset(factor, units); |
| 2198 | ReportGLError("glPolygonOffset"); |
| 2199 | } |
| 2200 | else |
| 2201 | { |
| 2202 | ReportGLNullFunction("glPolygonOffset"); |
| 2203 | } |
| 2204 | } |
| 2205 | |
| 2206 | void APIENTRY glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) |
| 2207 | { |
no test coverage detected