godot/drivers/jpg/image_loader_jpg.h

33 lines
883 B
C
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************/
/* image_loader_jpg.h */
/*************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/*************************************************/
/* Source code within this file is: */
2016-01-01 14:50:53 +01:00
/* (c) 2007-2016 Juan Linietsky, Ariel Manzur */
2014-02-10 02:10:30 +01:00
/* All Rights Reserved. */
/*************************************************/
#ifndef IMAGE_LOADER_JPG_H
#define IMAGE_LOADER_JPG_H
#include "io/image_loader.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class ImageLoaderJPG : public ImageFormatLoader {
public:
virtual Error load_image(Image *p_image,FileAccess *f);
virtual void get_recognized_extensions(List<String> *p_extensions) const;
ImageLoaderJPG();
};
#endif