Attempt to optimise texture memory by loading greyscale tgas as 8bit. Extend serverbrowser api for xonotic. Be more aggressive with loading hardware cursor images. Fix software banding with compressed textures. Rework autosprites to cope with atlased texcoords (note: q3 would discard the texcoords).

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5312 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2018-09-29 17:31:58 +00:00
parent caa5be6267
commit 8279a76675
53 changed files with 6924 additions and 7253 deletions

View file

@ -57,8 +57,11 @@ void dumpprogstring(FILE *out, FILE *src)
j++;
if ((line[j] == '/' && line[j] == '/') || line[j] == '\r' || line[j] == '\n')
{
while (line[j])
fputc(line[j++], out);
for (; line[j]; j++)
{
if (line[j] != '\r')
fputc(line[j], out);
}
}
else
{