From 10c3f91a24a950b6218a6acaa44bacd8a1a3b0f1 Mon Sep 17 00:00:00 2001 From: Ragnvald Maartmann-Moe IV Date: Sat, 3 Aug 2002 07:07:00 +0000 Subject: [PATCH] Revert taniwha's broken-radeon workaround. --- libs/video/renderer/gl/gl_draw.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/libs/video/renderer/gl/gl_draw.c b/libs/video/renderer/gl/gl_draw.c index 000ce5f02..5fa27e889 100644 --- a/libs/video/renderer/gl/gl_draw.c +++ b/libs/video/renderer/gl/gl_draw.c @@ -364,18 +364,7 @@ static inline void flush_text (void) { qfglBindTexture (GL_TEXTURE_2D, char_texture); - if (0) { - qfglDrawElements (GL_QUADS, tVAcount, GL_UNSIGNED_INT, tVAindices); - } else { - int i; - - qfglBegin (GL_QUADS); - for (i = 0; i < tVAcount; i++) { - qfglTexCoord2fv (textCoords + tVAindices[i] * 2); - qfglVertex2fv (textVertices + tVAindices[i] * 2); - } - qfglEnd (); - } + qfglDrawElements (GL_QUADS, tVAcount, GL_UNSIGNED_INT, tVAindices); tVAcount = 0; tV = textVertices; tC = textCoords;