1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef TEXTURE_LOADER_DDS_H
- #define TEXTURE_LOADER_DDS_H
- #include "core/io/resource_loader.h"
- class ResourceFormatDDS : public ResourceFormatLoader {
- public:
- virtual Ref<Resource> load(const String &p_path, const String &p_original_path = "", Error *r_error = nullptr, bool p_use_sub_threads = false, float *r_progress = nullptr, CacheMode p_cache_mode = CACHE_MODE_REUSE);
- virtual void get_recognized_extensions(List<String> *p_extensions) const;
- virtual bool handles_type(const String &p_type) const;
- virtual String get_resource_type(const String &p_path) const;
- virtual ~ResourceFormatDDS() {}
- };
- #endif
|