Lines Matching refs:targaheader
337 U_CHAR targaheader[18]; in start_input_tga() local
342 #define GET_2B(offset) ((unsigned int) UCH(targaheader[offset]) + \ in start_input_tga()
343 (((unsigned int) UCH(targaheader[offset+1])) << 8)) in start_input_tga()
345 if (! ReadOK(source->pub.input_file, targaheader, 18)) in start_input_tga()
349 if (targaheader[16] == 15) in start_input_tga()
350 targaheader[16] = 16; in start_input_tga()
352 idlen = UCH(targaheader[0]); in start_input_tga()
353 cmaptype = UCH(targaheader[1]); in start_input_tga()
354 subtype = UCH(targaheader[2]); in start_input_tga()
358 source->pixel_size = UCH(targaheader[16]) >> 3; in start_input_tga()
359 flags = UCH(targaheader[17]); /* Image Descriptor byte */ in start_input_tga()
366 (UCH(targaheader[16]) & 7) != 0 || /* bits/pixel must be multiple of 8 */ in start_input_tga()
456 read_colormap(source, (int) maplen, UCH(targaheader[7])); in start_input_tga()