Couple of tweeks, breakages, and fixes.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3898 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2011-09-05 01:48:23 +00:00
parent df9dae3e5f
commit 5a7f34bd50
32 changed files with 230 additions and 134 deletions

View file

@ -117,8 +117,9 @@ void GLR_NetGraph (void)
sprintf(st, "%3i%% packet loss", lost);
Draw_FunString(8, y, st);
y += 8;
GL_MTBind(0, GL_TEXTURE_2D, netgraphtexture);
#ifndef ANDROID
GL_MTBind(0, GL_TEXTURE_2D, netgraphtexture);
qglTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA,
NET_TIMINGS, NET_GRAPHHEIGHT, 0, GL_RGBA,
@ -140,6 +141,7 @@ void GLR_NetGraph (void)
qglTexCoord2f (0, 1);
qglVertex2f (x, y+NET_GRAPHHEIGHT);
qglEnd ();
#endif
}
void GLR_FrameTimeGraph (int frametime)
@ -177,7 +179,8 @@ void GLR_FrameTimeGraph (int frametime)
sprintf(st, "%3i%% packet loss", lost);
Draw_FunString(8, y, st);
y += 8;
#ifndef ANDROID
GL_MTBind(0, GL_TEXTURE_2D, netgraphtexture);
qglTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA,
@ -200,6 +203,7 @@ void GLR_FrameTimeGraph (int frametime)
qglTexCoord2f (0, 1);
qglVertex2f (x, y+NET_GRAPHHEIGHT);
qglEnd ();
#endif
}
#endif