Home
last modified time | relevance | path

Searched refs:pDecompressedData (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTTextureAPI.cpp363 void* pDecompressedData=NULL; in PVRTTextureLoadFromPointer() local
491pDecompressedData = malloc(PVRTGetTextureDataSize(sTextureHeaderDecomp, PVRTEX_ALLMIPLEVELS, false… in PVRTTextureLoadFromPointer()
494 if (!pDecompressedData) in PVRTTextureLoadFromPointer()
505 PVRTuint8* pTempDecompData = (PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
611pDecompressedData = malloc(PVRTGetTextureDataSize(sTextureHeaderDecomp, PVRTEX_ALLMIPLEVELS, false… in PVRTTextureLoadFromPointer()
614 if (!pDecompressedData) in PVRTTextureLoadFromPointer()
625 PVRTuint8* pTempDecompData = (PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
809 pTempData=(PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
889 FREE(pDecompressedData); in PVRTTextureLoadFromPointer()
945 FREE(pDecompressedData); in PVRTTextureLoadFromPointer()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
DPVRTTextureAPI.cpp763 void* pDecompressedData=NULL; in PVRTTextureLoadFromPointer() local
886pDecompressedData = malloc(PVRTGetTextureDataSize(sTextureHeaderDecomp, PVRTEX_ALLMIPLEVELS, false… in PVRTTextureLoadFromPointer()
889 if (!pDecompressedData) in PVRTTextureLoadFromPointer()
900 PVRTuint8* pTempDecompData = (PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
993pDecompressedData = malloc(PVRTGetTextureDataSize(sTextureHeaderDecomp, PVRTEX_ALLMIPLEVELS, false… in PVRTTextureLoadFromPointer()
996 if (!pDecompressedData) in PVRTTextureLoadFromPointer()
1007 PVRTuint8* pTempDecompData = (PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
1156 pTempData=(PVRTuint8*)pDecompressedData; in PVRTTextureLoadFromPointer()
1258 FREE(pDecompressedData); in PVRTTextureLoadFromPointer()
1323 FREE(pDecompressedData); in PVRTTextureLoadFromPointer()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTDecompress.cpp628 Pixel32 *pDecompressedData, in pvrtcDecompress() argument
639 Pixel32 *pOutData = pDecompressedData; in pvrtcDecompress()
714 Pixel32* pDecompressedData = (Pixel32*)pResultImage; in PVRTDecompressPVRTC() local
723 pDecompressedData=(Pixel32*)malloc(XTrueDim*YTrueDim*sizeof(Pixel32)); in PVRTDecompressPVRTC()
727 …int retval = pvrtcDecompress((PVRTuint8*)pCompressedData,pDecompressedData,XTrueDim,YTrueDim,(Do2b… in PVRTDecompressPVRTC()
737 ((Pixel32*)pResultImage)[x+y*XDim]=pDecompressedData[x+y*XTrueDim]; in PVRTDecompressPVRTC()
742 free(pDecompressedData); in PVRTDecompressPVRTC()