mirror of
https://git.code.sf.net/p/quake/nuq
synced 2024-11-24 21:12:07 +00:00
turns out GL_WaterSurface wasn't binding the texture wasn't binding the
surface taxter. very ugly
This commit is contained in:
parent
23b70fee0f
commit
89f7306091
1 changed files with 3 additions and 0 deletions
|
@ -599,11 +599,14 @@ dynamic:
|
|||
|
||||
void GL_WaterSurface(msurface_t *s)
|
||||
{
|
||||
int i;
|
||||
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
|
||||
if (lighthalf)
|
||||
glColor4f(0.5,0.5,0.5, r_wateralpha->value);
|
||||
else
|
||||
glColor4f(1,1,1, r_wateralpha->value);
|
||||
i = s->texinfo->texture->gl_texturenum;
|
||||
glBindTexture (GL_TEXTURE_2D, i);
|
||||
if (r_wateralpha->value < 1.0)
|
||||
{
|
||||
glDepthMask(0);
|
||||
|
|
Loading…
Reference in a new issue