convert line ends
[canaan.git] / prj / tech / libsrc / recorder / fdesc.h
blob6d46698b95a9376ec242e4f0bf9a6878db18495f
1 #ifndef _FDESC_H
2 #define _FDESC_H
3 #include <2d.h>
4 #include <rect.h>
6 // A Ref in a resource gets you a Frame Descriptor:
8 typedef struct FrameDesc {
9 grs_bitmap bm; // embedded bitmap, bm.bits set to NULL
10 union {
11 Rect updateArea; // update area (for anims)
12 Rect anchorArea; // area to anchor sub-bitmap
13 Point anchorPt; // point to anchor from
15 long pallOff; // offset to pallette
16 // bitmap's bits follow immediately
17 } FrameDesc;
19 #endif