Give EXR saving methods a default value of false like the bindings
This commit is contained in:
parent
3524346689
commit
a120f11c1e
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue