X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=client.h;h=435299c4d64f32353cee87cc35a43c79e3cc6c59;hb=2faff26f69150bd8b672cb96556c4028a292cdd5;hp=45312d96fcd95d53f97f7fbf5a4754823af9d423;hpb=df1cc2c4115be684d1e899643f4a47d40d073add;p=xonotic%2Fdarkplaces.git diff --git a/client.h b/client.h index 45312d96..435299c4 100644 --- a/client.h +++ b/client.h @@ -585,10 +585,12 @@ typedef struct entity_render_s // rtlights use these colors for the materials on this entity float render_rtlight_diffuse[3]; float render_rtlight_specular[3]; - // ignore lightmap and use lightgrid on this entity (e.g. FULLBRIGHT) + // ignore lightmap and use fixed lighting settings on this entity (e.g. FULLBRIGHT) qboolean render_modellight_forced; // do not process per pixel lights on this entity at all (like MATERIALFLAG_NORTLIGHT) qboolean render_rtlight_disabled; + // use the 3D lightmap from q3bsp on this entity + qboolean render_lightgrid; // storage of decals on this entity // (note: if allowdecals is set, be sure to call R_DecalSystem_Reset on removal!) @@ -2040,6 +2042,9 @@ void V_FadeViewFlashs(void); void V_CalcViewBlend(void); void V_CalcRefdefUsing (const matrix4x4_t *entrendermatrix, const vec3_t clviewangles, qboolean teleported, qboolean clonground, qboolean clcmdjump, float clstatsviewheight, qboolean cldead, qboolean clintermission, const vec3_t clvelocity); void V_CalcRefdef(void); +void V_MakeViewIsometric(void); +void V_MakeViewIsometric(void); +void V_StartPitchDrift(void); void CL_Locs_Reload_f(cmd_state_t *cmd); #endif