Whitespace...

This commit is contained in:
Ragnvald Maartmann-Moe IV 2002-08-22 19:16:44 +00:00
parent e6e920747c
commit 6ab0175cfc

View file

@ -43,10 +43,11 @@ static const char rcsid[] =
#include "r_local.h" #include "r_local.h"
int int
Mod_CalcFullbright (byte *in, byte *out, int pixels) Mod_CalcFullbright (byte *in, byte *out, int pixels)
{ {
int fb = 0; int fb = 0;
while (pixels--) { while (pixels--) {
if (*in >= 256 - 32) { if (*in >= 256 - 32) {
@ -61,18 +62,20 @@ Mod_CalcFullbright (byte *in, byte *out, int pixels)
} }
int int
Mod_Fullbright (byte * skin, int width, int height, char *name) Mod_Fullbright (byte *skin, int width, int height, char *name)
{ {
int pixels; byte *ptexels;
int texnum = 0; int pixels;
byte *ptexels; int texnum = 0;
// Check for fullbright pixels
// Check for fullbright pixels..
pixels = width * height; pixels = width * height;
// ptexels = Hunk_Alloc(s); // ptexels = Hunk_Alloc(s);
ptexels = malloc (pixels); ptexels = malloc (pixels);
SYS_CHECKMEM (ptexels); SYS_CHECKMEM (ptexels);
if (Mod_CalcFullbright (skin, ptexels, pixels)) { if (Mod_CalcFullbright (skin, ptexels, pixels)) {
Sys_DPrintf ("FB Model ID: '%s'\n", name); Sys_DPrintf ("FB Model ID: '%s'\n", name);
texnum = GL_LoadTexture (name, width, height, ptexels, true, true, 1); texnum = GL_LoadTexture (name, width, height, ptexels, true, true, 1);