[Bf-blender-cvs] CVS commit: blender/source/blender/src editmesh.c

Ton Roosendaal ton at blender.org
Mon Apr 12 19:32:29 CEST 2004


ton (Ton Roosendaal) 2004/04/12 19:32:29 CEST

  Modified files:
    blender/source/blender/src editmesh.c 
  
  Log:
  Just code cleanup here. I tried to check if a replacement of malloc() and
  friends with a group-malloc system would speedup. That wasn't...
  While doing this I noticed such mess... so spent a while cleaning things
  a bit:
  
  - all malloc() replaced with MEM_mallocN()
    (this except for vertices/edges/faces, for speed)
  - unified free_xx names, this was too confusing! so now we have:
  
    free_editvert()
    free_editedge()
    free_editvlak()
  
    free_vertlist()
    free_edgelist()
    free_vlaklist()
  
    and only very few calls to free() and alloc() themselves.
  
  Revision  Changes    Path
  1.83      +85 -137   blender/source/blender/src/editmesh.c



More information about the Bf-blender-cvs mailing list