123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef IMAGE_LOADER_TINYEXR_H
- #define IMAGE_LOADER_TINYEXR_H
- #include "core/io/image_loader.h"
- class ImageLoaderTinyEXR : public ImageFormatLoader {
- public:
- virtual Error load_image(Ref<Image> p_image, FileAccess *f, bool p_force_linear, float p_scale);
- virtual void get_recognized_extensions(List<String> *p_extensions) const;
- ImageLoaderTinyEXR();
- };
- #endif
|