Home | History | Annotate | Download | only in skin

Lines Matching refs:dst

18 skin_pos_rotate( SkinPos*  dst, SkinPos*  src, SkinRotation  rotation )
25 dst->x = x;
26 dst->y = y;
30 dst->x = -y;
31 dst->y = x;
35 dst->x = -x;
36 dst->y = -y;
40 dst->x = y;
41 dst->y = -x;
56 skin_size_rotate( SkinSize* dst, SkinSize* src, SkinRotation rot )
62 dst->w = h;
63 dst->h = w;
65 dst->w = w;
66 dst->h = h;
96 skin_rect_rotate( SkinRect* dst, SkinRect* src, SkinRotation rot )
106 dst->pos.x = -(y + h);
107 dst->pos.y = x;
108 dst->size.w = h;
109 dst->size.h = w;
113 dst->pos.x = -(src->pos.x + src->size.w);
114 dst->pos.y = -(src->pos.y + src->size.h);
115 dst->size = src->size;
123 dst->pos.x = y;
124 dst->pos.y = -(x + w);
125 dst->size.w = h;
126 dst->size.h = w;
130 dst[0] = src[0];