axmol/core/base/pvr.h

28 lines
791 B
C
Raw Normal View History

2014-06-26 02:44:20 +08:00
/******************************************************************************
2021-12-25 10:04:45 +08:00
2014-06-26 02:44:20 +08:00
@File PVRTDecompress.h
2021-12-25 10:04:45 +08:00
2014-06-26 02:44:20 +08:00
@Title
2021-12-25 10:04:45 +08:00
2014-06-26 02:44:20 +08:00
@Copyright Copyright (C) 2000 - 2008 by Imagination Technologies Limited.
2021-12-25 10:04:45 +08:00
2014-06-26 02:44:20 +08:00
@Platform ANSI compatible
2021-12-25 10:04:45 +08:00
2014-06-26 02:44:20 +08:00
@Description PVRTC Texture Decompression.
2021-12-25 10:04:45 +08:00
@Compression https://developer.imaginationtech.com/pvrtextool/
https://cdn.imgtec.com/sdk/OFFLINE/PVRTexToolSetup-2021_R2.exe
2014-06-26 02:44:20 +08:00
******************************************************************************/
2014-03-18 02:28:24 +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);
2014-03-18 02:28:24 +08:00
2021-12-25 10:04:45 +08:00
#endif //__PVR_H__