Lines Matching refs:dwHeight
38 unsigned short dwHeight; member
53 …A_INFO*& pTGAD, GX2Surface*& pSurface, u32 nMipLevel, u32 nFaceOrSlice, u32 dwWidth, u32 dwHeight);
351 pSurface->height = pTGAD->hdr.dwHeight; in GetGX2TextureInfo()
397 u32 dwWidth, dwHeight; in GenericLoadFunction() local
418 dwHeight = pTGAD->hdr.dwHeight; in GenericLoadFunction()
421 err = fnLoop(pFile, pTGAD, pSurface, nMipLevel, nFace, dwWidth, dwHeight); in GenericLoadFunction()
425 dwHeight = (dwHeight>1) ? (dwHeight>>1) : 1; in GenericLoadFunction()
455 u32 nMipLevel, u32 nFaceOrSlice, u32 dwWidth, u32 dwHeight) in LoopRGBA() argument
458 size_t size = (size_t)(dwWidth * dwHeight * pTGAD->hdr.colorDepth / 8); in LoopRGBA()
479 if(DecodeRLEImage(pFile, pTGAD, pData, dwWidth, dwHeight, pTGAD->hdr.colorDepth)) in LoopRGBA()
487 if(ReadRawImage(pFile, pTGAD, pData, dwWidth, dwHeight, pTGAD->hdr.colorDepth)) in LoopRGBA()
496 SwapFromBottomToTop(pData, dwWidth, dwHeight); in LoopRGBA()
500 SwapFromRightToLeft(pData, dwWidth, dwHeight); in LoopRGBA()
504 SwapFromBottomToTop(pData, dwWidth, dwHeight); in LoopRGBA()
505 SwapFromRightToLeft(pData, dwWidth, dwHeight); in LoopRGBA()