24 lines
210 B
C++
24 lines
210 B
C++
#ifndef LIME_GRAPHICS_PVRTC_H
|
|
#define LIME_GRAPHICS_PVRTC_H
|
|
|
|
|
|
namespace lime {
|
|
|
|
class ImageData;
|
|
|
|
class PVRTC {
|
|
|
|
|
|
public:
|
|
|
|
static bool Decode (const char *path, ImageData *imageData);
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|