| 520389e3  xiaoyu
 
接入cocos源码,编译未通过,继续修改 | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 |   /******************************************************************************
   
   @File         PVRTDecompress.h
   
   @Title
   
   @Copyright    Copyright (C) 2000 - 2008 by Imagination Technologies Limited.
   
   @Platform     ANSI compatible
   
   @Description  PVRTC Texture Decompression.
   
   ******************************************************************************/
  
  #ifndef __PVR_H__
  #define __PVR_H__
  
  
  int PVRTDecompressPVRTC(const void * const pCompressedData,const int XDim,const int YDim,void *pDestData,const bool Do2bitMode);
  
  
  #endif //__PVR_H__
 |