Index: radeon_subset_bitmap.c =================================================================== RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/radeon/radeon_subset_bitmap.c,v retrieving revision 1.2 diff -u -r1.2 radeon_subset_bitmap.c --- radeon_subset_bitmap.c 22 Aug 2003 20:11:45 -0000 1.2 +++ radeon_subset_bitmap.c 13 Oct 2004 14:47:29 -0000 @@ -138,9 +138,9 @@ /* Just use the GL entrypoints to talk to radeon_subset_vtx.c: */ - glBegin( GL_POINTS ); - glColor4fv( ctx->Current.RasterColor ); - glTexCoord2fv( ctx->Current.RasterTexCoords[0] ); + GL_CALL(Begin)( GL_POINTS ); + GL_CALL(Color4fv)( ctx->Current.RasterColor ); + GL_CALL(TexCoord2fv)( ctx->Current.RasterTexCoords[0] ); if (ctx->_RotateMode) { @@ -153,7 +153,7 @@ GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); for (row=0; row> 1); @@ -173,7 +173,7 @@ GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); for (col=0; col> 1); @@ -184,9 +184,9 @@ } } - glEnd(); - glColor4fv( saved_color ); - glTexCoord2fv( saved_tex0 ); + GL_CALL(End)(); + GL_CALL(Color4fv)( saved_color ); + GL_CALL(TexCoord2fv)( saved_tex0 ); /* Fire outstanding vertices, restore state */