mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Revert taniwha's broken-radeon workaround.
This commit is contained in:
parent
9c08f5b169
commit
10c3f91a24
1 changed files with 1 additions and 12 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue