~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenlib/BLI_boxpack2d.h

  • Committer: Reinhard Tartler
  • Date: 2014-05-31 01:50:05 UTC
  • mfrom: (14.2.27 sid)
  • Revision ID: siretart@tauware.de-20140531015005-ml6druahuj82nsav
mergeĀ fromĀ debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        float y;
40
40
        float w;
41
41
        float h;
42
 
        int index;
43
42
        
44
43
        /* Verts this box uses
45
44
         * (BL,TR,TL,BR) / 0,1,2,3 */
46
45
        struct BoxVert *v[4];
 
46
 
 
47
        int index;
47
48
} BoxPack;
48
49
 
49
 
void BLI_box_pack_2d(BoxPack *boxarray, const int len, float *tot_width, float *tot_height);
 
50
void BLI_box_pack_2d(BoxPack *boxarray, const unsigned int len, float *tot_width, float *tot_height);
50
51
 
51
52
#endif
52
53