diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/io/image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/image.h b/core/io/image.h index a5025ee8a1..be308b0ac1 100644 --- a/core/io/image.h +++ b/core/io/image.h @@ -313,8 +313,8 @@ public: Error save_jpg(const String &p_path, float p_quality = 0.75) const; Vector<uint8_t> save_png_to_buffer() const; Vector<uint8_t> save_jpg_to_buffer(float p_quality = 0.75) const; - Vector<uint8_t> save_exr_to_buffer(bool p_grayscale) const; - Error save_exr(const String &p_path, bool p_grayscale) const; + Vector<uint8_t> save_exr_to_buffer(bool p_grayscale = false) const; + Error save_exr(const String &p_path, bool p_grayscale = false) const; Error save_webp(const String &p_path, const bool p_lossy = false, const float p_quality = 0.75f) const; Vector<uint8_t> save_webp_to_buffer(const bool p_lossy = false, const float p_quality = 0.75f) const; |