mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 16:50:48 +00:00
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:
parent
9a348350df
commit
a3e32e213e
11 changed files with 89 additions and 89 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue