]> git.xonotic.org Git - xonotic/darkplaces.git/blob - view.h
Merge PR 'sv_gameplayfix_stepmultipletimes 1: Prevent players moving too far/fast...
[xonotic/darkplaces.git] / view.h
1 #ifndef VIEW_H
2 #define VIEW_H
3
4 #include "qtypes.h"
5 #include "matrixlib.h"
6 struct cmd_state_s;
7
8 void V_Init (void);
9 void V_UpdateBlends (void);
10 void V_ParseDamage (void);
11 void V_DriftPitch(void);
12 void V_FadeViewFlashs(void);
13 void V_CalcViewBlend(void);
14 void V_CalcRefdefUsing (const matrix4x4_t *entrendermatrix, const vec3_t clviewangles, qbool teleported, qbool clonground, qbool clcmdjump, float clstatsviewheight, qbool cldead, const vec3_t clvelocity);
15 void V_CalcRefdef(void);
16 void V_MakeViewIsometric(void);
17 void V_StartPitchDrift(void);
18 void V_StopPitchDrift (void);
19 void V_StartPitchDrift_f(struct cmd_state_s *cmd);
20
21 #endif