Draw_Character -> Draw_Character8

Draw_String -> Draw_String8
Draw_Alt_String -> Draw_AltString8

You know what this means right?  Draw_*16 is coming soon.  Very soon.
This commit is contained in:
Joseph Carter 2000-06-05 01:05:25 +00:00
parent 9a348350df
commit a3e32e213e
11 changed files with 89 additions and 89 deletions

View file

@ -792,8 +792,9 @@ void R_PolyBlend (void)
glRotatef (-90, 1, 0, 0); // put Z going up
glRotatef (90, 0, 0, 1); // put Z going up
glBlendFunc (GL_SRC_ALPHA, GL_ONE);
// software alpha is about GL alpha squared --KB
v_blend[3] = sqrt(v_blend[3]);
// v_blend[3] = sqrt(v_blend[3]);
glColor4fv (v_blend);
@ -805,6 +806,7 @@ void R_PolyBlend (void)
glEnd ();
glEnable (GL_TEXTURE_2D);
glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}