]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - r_light.h
added newmap function to render modules (so explosions and other things are reset...
[xonotic/darkplaces.git] / r_light.h
index 4d7bcb551a66b9bbefddef7142f41fab750cba6b..df11b53b3c41b6c4899eaace89cdaee4d6bcdd38 100644 (file)
--- a/r_light.h
+++ b/r_light.h
@@ -7,15 +7,16 @@ typedef struct
        float   radius;
        float   die;                            // stop lighting after this time
        float   decay;                          // drop this each second
-       int             key;
+       entity_t *ent;                          // the entity that spawned this light (can be NULL if it is not to be replaced repeatedly)
        vec3_t  color;                          // LordHavoc: colored lighting
-       qboolean        dark;                   // subtracts light instead of adding
 } dlight_t;
 
 // LordHavoc: this affects the lighting scale of the whole game
 #define LIGHTOFFSET 4096.0f
 
-extern void R_CompleteLightPoint (vec3_t color, vec3_t p);
+extern void R_CompleteLightPoint (vec3_t color, vec3_t p, int dynamic);
 extern void R_DynamicLightPoint(vec3_t color, vec3_t org, int *dlightbits);
 extern void R_DynamicLightPointNoMask(vec3_t color, vec3_t org);
 extern void R_LightPoint (vec3_t color, vec3_t p);
+
+extern int r_dlightframecount;