]> git.xonotic.org Git - xonotic/darkplaces.git/blob - clvm_cmds.h
Fix an IO exception on exit when using -condebug because FS_Close was trying to log...
[xonotic/darkplaces.git] / clvm_cmds.h
1 #ifndef __CLVM_CMDS_H__
2 #define __CLVM_CMDS_H__
3
4 /* These are VM built-ins that originate in the client-side programs support
5    but are reused by the other programs (usually the menu). */
6
7 void VM_CL_setmodel (void);
8 void VM_CL_precache_model (void);
9 void VM_CL_setorigin (void);
10
11 void VM_CL_R_AddDynamicLight (void);
12 void VM_CL_R_ClearScene (void);
13 void VM_CL_R_AddEntities (void);
14 void VM_CL_R_AddEntity (void);
15 void VM_CL_R_SetView (void);
16 void VM_CL_R_RenderScene (void);
17 void VM_CL_R_LoadWorldModel (void);
18
19 void VM_CL_R_PolygonBegin (void);
20 void VM_CL_R_PolygonVertex (void);
21 void VM_CL_R_PolygonEnd (void);
22
23 void VM_CL_setattachment(void);
24 void VM_CL_gettagindex(void);
25 void VM_CL_gettaginfo(void);
26
27 #endif /* __CLVM_CMDS_H__ */