Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _MODSUPT_H_
  2. #define _MODSUPT_H_
  3.  
  4. #include "brender/br_types.h"
  5.  
  6. void BrModelApplyMap(br_model* model, int map_type, br_matrix34* xform);
  7.  
  8. br_matrix34* BrModelFitMap(br_model* model, int axis_0, int axis_1, br_matrix34* transform);
  9.  
  10. void BrModelFree(br_model* m);
  11.  
  12. br_model* BrModelAllocate(char* name, int nvertices, int nfaces);
  13.  
  14. br_primitive_list* BrPrimitiveListAllocate(br_uint_32 prim_type, br_uint_16 num_prims);
  15.  
  16. br_uint_32 BrModelAddPrimitiveList(br_model* model, br_primitive_list* primitive_list);
  17.  
  18. #endif
  19.