2019-11-23 20:27:39 +08:00
|
|
|
/******************************************************************************
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@File PVRTDecompress.h
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@Title
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@Copyright Copyright (C) 2000 - 2008 by Imagination Technologies Limited.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@Platform ANSI compatible
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@Description PVRTC Texture Decompression.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-04-26 16:38:59 +08:00
|
|
|
@Compression https://developer.imaginationtech.com/pvrtextool/
|
|
|
|
https://cdn.imgtec.com/sdk/OFFLINE/PVRTexToolSetup-2021_R2.exe
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __PVR_H__
|
|
|
|
#define __PVR_H__
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
int PVRTDecompressPVRTC(const void* const pCompressedData,
|
|
|
|
const int XDim,
|
|
|
|
const int YDim,
|
|
|
|
void* pDestData,
|
|
|
|
const bool Do2bitMode);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif //__PVR_H__
|