mirror of
https://github.com/id-Software/Quake-Tools.git
synced 2026-03-20 08:59:49 +01:00
The source release of the qutils.
This commit is contained in:
38
qutils/LIGHT/LIGHT.H
Normal file
38
qutils/LIGHT/LIGHT.H
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
#include "cmdlib.h"
|
||||
#include "mathlib.h"
|
||||
#include "bspfile.h"
|
||||
#include "entities.h"
|
||||
#include "threads.h"
|
||||
|
||||
#define ON_EPSILON 0.1
|
||||
|
||||
#define MAXLIGHTS 1024
|
||||
|
||||
void LoadNodes (char *file);
|
||||
qboolean TestLine (vec3_t start, vec3_t stop);
|
||||
|
||||
void LightFace (int surfnum);
|
||||
void LightLeaf (dleaf_t *leaf);
|
||||
|
||||
void MakeTnodes (dmodel_t *bm);
|
||||
|
||||
extern float scaledist;
|
||||
extern float scalecos;
|
||||
extern float rangescale;
|
||||
|
||||
extern int c_culldistplane, c_proper;
|
||||
|
||||
byte *GetFileSpace (int size);
|
||||
extern byte *filebase;
|
||||
|
||||
extern vec3_t bsp_origin;
|
||||
extern vec3_t bsp_xvector;
|
||||
extern vec3_t bsp_yvector;
|
||||
|
||||
void TransformSample (vec3_t in, vec3_t out);
|
||||
void RotateSample (vec3_t in, vec3_t out);
|
||||
|
||||
extern qboolean extrasamples;
|
||||
|
||||
extern float minlights[MAX_MAP_FACES];
|
||||
Reference in New Issue
Block a user