| 758 | } |
| 759 | |
| 760 | void gte::glPolygonMode(GLenum face, GLenum mode) |
| 761 | { |
| 762 | ::glPolygonMode(face, mode); |
| 763 | ReportGLError("glPolygonMode"); |
| 764 | |
| 765 | #if defined(GTE_ENABLE_GLTRACE) |
| 766 | gsTrace.Call("glPolygonMode", "", |
| 767 | gsTrace.GetName(face), gsTrace.GetName(mode)); |
| 768 | #endif |
| 769 | } |
| 770 | |
| 771 | void gte::glScissor(GLint x, GLint y, GLsizei width, GLsizei height) |
| 772 | { |
nothing calls this directly
no test coverage detected