26 lines
287 B
C++
26 lines
287 B
C++
#ifndef LIME_GRAPHICS_FORMAT_JPEG_H
|
|
#define LIME_GRAPHICS_FORMAT_JPEG_H
|
|
|
|
|
|
#include <graphics/ImageBuffer.h>
|
|
#include <utils/Resource.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class JPEG {
|
|
|
|
|
|
public:
|
|
|
|
static bool Decode (Resource *resource, ImageBuffer *imageBuffer);
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |