Lines Matching refs:Uint32
103 Uint32 id;
104 Uint32 length;
107 Uint32 num;
111 Uint32 drawable_offset;
132 Uint32 flags;
133 Uint32 size;
141 Uint32 file_version;
142 Uint32 width;
143 Uint32 height;
145 Uint32 precision;
148 Uint32 * layer_file_offsets;
149 Uint32 * channel_file_offsets;
152 Uint32 cm_num;
157 Uint32 width;
158 Uint32 height;
163 Uint32 hierarchy_file_offset;
164 Uint32 layer_mask_offset;
166 Uint32 offset_x;
167 Uint32 offset_y;
172 Uint32 width;
173 Uint32 height;
177 Uint32 hierarchy_file_offset;
179 Uint32 color;
180 Uint32 opacity;
186 Uint32 width;
187 Uint32 height;
188 Uint32 bpp;
190 Uint32 * level_file_offsets;
194 Uint32 width;
195 Uint32 height;
197 Uint32 * tile_file_offsets;
202 typedef unsigned char * (* load_tile_type) (SDL_RWops *, Uint32, int, int, int);
227 Uint32 tmp; in read_string()
253 static Uint32 Swap32 (Uint32 v) { in Swap32()
262 Uint32 len; in xcf_read_property()
350 Uint32 cm_num; in read_xcf_header()
441 l->color = ((Uint32) prop.data.color[0] << 16) in read_xcf_channel()
442 | ((Uint32) prop.data.color[1] << 8) in read_xcf_channel()
443 | ((Uint32) prop.data.color[2]); in read_xcf_channel()
478 h->level_file_offsets = (Uint32 *) SDL_realloc (h->level_file_offsets, sizeof (Uint32) * (i+1)); in read_xcf_hierarchy()
501 l->tile_file_offsets = (Uint32 *) SDL_realloc (l->tile_file_offsets, sizeof (Uint32) * (i+1)); in read_xcf_level()
512 static unsigned char * load_xcf_tile_none (SDL_RWops * src, Uint32 len, int bpp, int x, int y) { in load_xcf_tile_none()
522 static unsigned char * load_xcf_tile_rle (SDL_RWops * src, Uint32 len, int bpp, int x, int y) { in load_xcf_tile_rle()
524 Uint32 reallen; in load_xcf_tile_rle()
602 static Uint32 rgb2grey (Uint32 a) { in rgb2grey()
611 static void create_channel_surface (SDL_Surface * surf, xcf_image_type itype, Uint32 color, Uint32 … in create_channel_surface()
612 Uint32 c = 0; in create_channel_surface()
634 Uint32 *p; in do_layer_surface()
636 Uint32 x, y, tx, ty, ox, oy; in do_layer_surface()
637 Uint32 *row; in do_layer_surface()
638 Uint32 length; in do_layer_surface()
687 p = (Uint32 *) p8; in do_layer_surface()
692 row = (Uint32 *) ((Uint8 *) surface->pixels + y * surface->pitch + tx * 4); in do_layer_surface()
701 *row |= ((Uint32)*p8++ << 16); in do_layer_surface()
702 *row |= ((Uint32)*p8++ << 8); in do_layer_surface()
703 *row |= ((Uint32)*p8++ << 0); in do_layer_surface()
712 *row = ((Uint32)(head->cm_map[*p8 * 3]) << 16); in do_layer_surface()
713 *row |= ((Uint32)(head->cm_map[*p8 * 3 + 1]) << 8); in do_layer_surface()
714 *row |= ((Uint32)(head->cm_map[*p8++ * 3 + 2]) << 0); in do_layer_surface()
715 *row |= ((Uint32)*p8++ << 24); in do_layer_surface()
721 *row = ((Uint32)*p8 << 16); in do_layer_surface()
722 *row |= ((Uint32)*p8 << 8); in do_layer_surface()
723 *row |= ((Uint32)*p8++ << 0); in do_layer_surface()
724 *row |= ((Uint32)*p8++ << 24); in do_layer_surface()
744 | ((Uint32)(head->cm_map[*p8 * 3]) << 16) in do_layer_surface()
745 | ((Uint32)(head->cm_map[*p8 * 3 + 1]) << 8) in do_layer_surface()
746 | ((Uint32)(head->cm_map[*p8 * 3 + 2]) << 0); in do_layer_surface()
753 | (((Uint32)(*p8)) << 16) in do_layer_surface()
754 | (((Uint32)(*p8)) << 8) in do_layer_surface()
755 | (((Uint32)(*p8)) << 0); in do_layer_surface()
802 unsigned char * (* load_tile) (SDL_RWops *, Uint32, int, int, int); in IMG_LoadXCF_RW()
843 …head->layer_file_offsets = (Uint32 *) SDL_realloc (head->layer_file_offsets, sizeof (Uint32) * (of… in IMG_LoadXCF_RW()
844 head->layer_file_offsets [offsets] = (Uint32)offset; in IMG_LoadXCF_RW()