| 322 | glError = TEST_FOR_OPENGL_ERRORS |
| 323 | } |
| 324 | void glVertex2fv( const F32 * pv ) |
| 325 | { |
| 326 | AssertFatal( (beginEndMode >= 0), "glVertex2fv(): called outside glBegin/glEnd"); |
| 327 | glVertex4f( pv[0], pv[1], 0.0f, 1.0f ); |
| 328 | int glError; |
| 329 | glError = TEST_FOR_OPENGL_ERRORS |
| 330 | } |
| 331 | void glVertex2i( GLint x, GLint y) |
| 332 | { |
| 333 | AssertFatal( (beginEndMode >= 0), "glVertex2i(): called outside glBegin/glEnd"); |
no test coverage detected