| 315 | glError = TEST_FOR_OPENGL_ERRORS |
| 316 | } |
| 317 | void glVertex3f( GLfloat x, GLfloat y, GLfloat z ) |
| 318 | { |
| 319 | AssertFatal( (beginEndMode >= 0), "glVertex3f(): called outside glBegin/glEnd"); |
| 320 | glVertex4f( x, y, z, 1.0f ); |
| 321 | int glError; |
| 322 | glError = TEST_FOR_OPENGL_ERRORS |
| 323 | } |
| 324 | void glVertex2fv( const F32 * pv ) |
| 325 | { |
| 326 | AssertFatal( (beginEndMode >= 0), "glVertex2fv(): called outside glBegin/glEnd"); |
no test coverage detected