Searched refs:imagespec (Results 1 - 3 of 3) sorted by relevance

/haiku/src/add-ons/translators/tga/
H A DTGATranslator.cpp178 TGAImageSpec &imagespec)
198 if (imagespec.depth == 32)
206 nalpha = imagespec.descriptor & TGA_DESC_ALPHABITS;
307 TGAImageSpec imagespec;
308 memcpy(&imagespec.xorigin, buf + 8, 2);
309 imagespec.xorigin = B_LENDIAN_TO_HOST_INT16(imagespec.xorigin);
311 memcpy(&imagespec.yorigin, buf + 10, 2);
312 imagespec.yorigin = B_LENDIAN_TO_HOST_INT16(imagespec
177 tga_alphabits(TGAFileHeader &filehead, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec) argument
831 translate_from_bits_to_tgatc(BPositionIO *inSource, BPositionIO *outDestination, color_space fromspace, TGAImageSpec &imagespec, bool brle) argument
961 translate_from_bits1_to_tgabw(BPositionIO *inSource, BPositionIO *outDestination, int32 bitsRowBytes, TGAImageSpec &imagespec, bool brle) argument
1068 write_tga_headers(BPositionIO *outDestination, TGAFileHeader &fileheader, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec) argument
1214 TGAImageSpec imagespec; local
1534 translate_from_tganm_to_bits(BPositionIO *inSource, BPositionIO *outDestination, TGAFileHeader &filehead, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec) argument
1630 translate_from_tganmrle_to_bits(BPositionIO *inSource, BPositionIO *outDestination, TGAFileHeader &filehead, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec) argument
1837 translate_from_tgam_to_bits(BPositionIO *inSource, BPositionIO *outDestination, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec, uint8 *pmap) argument
1933 translate_from_tgamrle_to_bits(BPositionIO *inSource, BPositionIO *outDestination, TGAFileHeader &filehead, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec, uint8 *pmap) argument
2078 TGAImageSpec imagespec; local
[all...]
H A DTGATranslator.h154 TGAImageSpec &imagespec);
161 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec);
165 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec);
169 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec, uint8 *pmap);
/haiku/src/tools/translation/tgainfo/
H A Dtgainfo.cpp185 TGAImageSpec imagespec; local
186 imagespec.xorigin = tga_uint16(reinterpret_cast<char *>(buf), 8);
187 imagespec.yorigin = tga_uint16(reinterpret_cast<char *>(buf), 10);
188 imagespec.width = tga_uint16(reinterpret_cast<char *>(buf), 12);
189 imagespec.height = tga_uint16(reinterpret_cast<char *>(buf), 14);
190 imagespec.depth = buf[16];
191 imagespec.descriptor = buf[17];
195 static_cast<int>(imagespec.xorigin));
197 static_cast<int>(imagespec.yorigin));
199 static_cast<int>(imagespec
[all...]

Completed in 39 milliseconds