mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Whitespace...
This commit is contained in:
parent
e6e920747c
commit
6ab0175cfc
1 changed files with 10 additions and 7 deletions
|
@ -43,10 +43,11 @@ static const char rcsid[] =
|
|||
|
||||
#include "r_local.h"
|
||||
|
||||
|
||||
int
|
||||
Mod_CalcFullbright (byte *in, byte *out, int pixels)
|
||||
{
|
||||
int fb = 0;
|
||||
int fb = 0;
|
||||
|
||||
while (pixels--) {
|
||||
if (*in >= 256 - 32) {
|
||||
|
@ -61,18 +62,20 @@ Mod_CalcFullbright (byte *in, byte *out, int pixels)
|
|||
}
|
||||
|
||||
int
|
||||
Mod_Fullbright (byte * skin, int width, int height, char *name)
|
||||
Mod_Fullbright (byte *skin, int width, int height, char *name)
|
||||
{
|
||||
int pixels;
|
||||
int texnum = 0;
|
||||
byte *ptexels;
|
||||
byte *ptexels;
|
||||
int pixels;
|
||||
int texnum = 0;
|
||||
|
||||
// Check for fullbright pixels
|
||||
|
||||
// Check for fullbright pixels..
|
||||
pixels = width * height;
|
||||
|
||||
// ptexels = Hunk_Alloc(s);
|
||||
// ptexels = Hunk_Alloc(s);
|
||||
ptexels = malloc (pixels);
|
||||
SYS_CHECKMEM (ptexels);
|
||||
|
||||
if (Mod_CalcFullbright (skin, ptexels, pixels)) {
|
||||
Sys_DPrintf ("FB Model ID: '%s'\n", name);
|
||||
texnum = GL_LoadTexture (name, width, height, ptexels, true, true, 1);
|
||||
|
|
Loading…
Reference in a new issue