]> icculus.org git repositories - divverent/darkplaces.git/blob - r_modules.h
fix random white pixels with r_shadow_glossexact caused by unnormalized VectorS/T/R
[divverent/darkplaces.git] / r_modules.h
1
2 #ifndef R_MODULES_H
3 #define R_MODULES_H
4
5 void R_Modules_Init(void);
6 void R_RegisterModule(const char *name, void(*start)(void), void(*shutdown)(void), void(*newmap)(void), void(*devicelost)(void), void(*devicerestored)(void));
7 void R_Modules_Start(void);
8 void R_Modules_Shutdown(void);
9 void R_Modules_NewMap(void);
10 void R_Modules_Restart(void);
11 void R_Modules_DeviceLost(void);
12 void R_Modules_DeviceRestored(void);
13
14 #endif
15