Home
last modified time | relevance | path

Searched defs:bpp (Results 1 – 2 of 2) sorted by relevance

/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/TexConv2/ddsReader/
DDDS.h24 #define PAD_BYTE(width, bpp) (((bpp) * (width) + 7) / 8) argument
25 #define PAD_WORD(width, bpp) ((((bpp) * (width) + 15) / 16) * 2) argument
27 #define PAD_DWORD(width, bpp) ((((bpp) * (width) + 31) / 32) * 4) argument
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/TexConv2/tgaReader/
DtgaReader.cpp110 TU_Error DecodeRLEImage(FILE*& pFile, TGA_INFO* pTGAD, u8* pImg, u32 width, u32 height, u32 bpp) in DecodeRLEImage()
271 TU_Error ReadRawImage(FILE*& pFile, TGA_INFO* pTGAD, u8* pImg, u32 width, u32 height, u32 bpp) in ReadRawImage()