summaryrefslogtreecommitdiffstats
path: root/modules/webp/resource_saver_webp.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/webp/resource_saver_webp.h')
-rw-r--r--modules/webp/resource_saver_webp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/webp/resource_saver_webp.h b/modules/webp/resource_saver_webp.h
index 5546c69e6d..65cd4377db 100644
--- a/modules/webp/resource_saver_webp.h
+++ b/modules/webp/resource_saver_webp.h
@@ -39,9 +39,9 @@ public:
static Error save_image(const String &p_path, const Ref<Image> &p_img, const bool p_lossy = false, const float p_quality = 0.75f);
static Vector<uint8_t> save_image_to_buffer(const Ref<Image> &p_img, const bool p_lossy = false, const float p_quality = 0.75f);
- virtual Error save(const Ref<Resource> &p_resource, const String &p_path, uint32_t p_flags = 0);
- virtual bool recognize(const Ref<Resource> &p_resource) const;
- virtual void get_recognized_extensions(const Ref<Resource> &p_resource, List<String> *p_extensions) const;
+ virtual Error save(const Ref<Resource> &p_resource, const String &p_path, uint32_t p_flags = 0) override;
+ virtual bool recognize(const Ref<Resource> &p_resource) const override;
+ virtual void get_recognized_extensions(const Ref<Resource> &p_resource, List<String> *p_extensions) const override;
ResourceSaverWebP();
};