X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=clvm_cmds.h;h=259991ff3f0ebf2416a1e2c0458f6ce0d09e45a0;hp=58928c2f938865e3bb742995d8f721797a26de83;hb=2075ae43356d724bae305ce8fd36ea570718b14a;hpb=706ba4402b7f21c59c9894bd8d5ade30f1b9860e diff --git a/clvm_cmds.h b/clvm_cmds.h index 58928c2f..259991ff 100644 --- a/clvm_cmds.h +++ b/clvm_cmds.h @@ -1,6 +1,27 @@ #ifndef __CLVM_CMDS_H__ #define __CLVM_CMDS_H__ -int CL_GetTagMatrix (matrix4x4_t *out, prvm_edict_t *ent, int tagindex); +/* These are VM built-ins that originate in the client-side programs support + but are reused by the other programs (usually the menu). */ + +void VM_CL_setmodel (void); +void VM_CL_precache_model (void); +void VM_CL_setorigin (void); + +void VM_CL_R_AddDynamicLight (void); +void VM_CL_R_ClearScene (void); +void VM_CL_R_AddEntities (void); +void VM_CL_R_AddEntity (void); +void VM_CL_R_SetView (void); +void VM_CL_R_RenderScene (void); +void VM_CL_R_LoadWorldModel (void); + +void VM_CL_R_PolygonBegin (void); +void VM_CL_R_PolygonVertex (void); +void VM_CL_R_PolygonEnd (void); + +void VM_CL_setattachment(void); +void VM_CL_gettagindex(void); +void VM_CL_gettaginfo(void); #endif /* __CLVM_CMDS_H__ */