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

/haiku/src/add-ons/translators/tga/
H A DTGATranslator.h153 uint8 tga_alphabits(TGAFileHeader &filehead, TGAColorMapSpec &mapspec,
161 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec);
165 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec);
169 TGAColorMapSpec &mapspec, TGAImageSpec &imagespec, uint8 *pmap);
H A DTGATranslator.cpp177 TGATranslator::tga_alphabits(TGAFileHeader &filehead, TGAColorMapSpec &mapspec, argument
188 if (mapspec.entrysize == 32)
190 else if (mapspec.entrysize == 16)
282 TGAColorMapSpec mapspec;
283 memcpy(&mapspec.firstentry, buf + 3, 2);
284 mapspec.firstentry = B_LENDIAN_TO_HOST_INT16(mapspec.firstentry);
285 if (fileheader.colormaptype == 0 && mapspec.firstentry != 0)
288 memcpy(&mapspec.length, buf + 5, 2);
289 mapspec
1068 write_tga_headers(BPositionIO *outDestination, TGAFileHeader &fileheader, TGAColorMapSpec &mapspec, TGAImageSpec &imagespec) argument
1209 TGAColorMapSpec mapspec; 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
2077 TGAColorMapSpec mapspec; local
[all...]
/haiku/src/tools/translation/tgainfo/
H A Dtgainfo.cpp170 TGAColorMapSpec mapspec; local
171 mapspec.firstentry = tga_uint16(reinterpret_cast<char *>(buf), 3);
172 mapspec.length = tga_uint16(reinterpret_cast<char *>(buf), 5);
173 mapspec.entrysize = buf[7];
177 static_cast<int>(mapspec.firstentry));
179 static_cast<int>(mapspec.length));
181 static_cast<int>(mapspec.entrysize));

Completed in 81 milliseconds