mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Give EXR saving methods a default value of false like the bindings
This commit is contained in:
parent
3524346689
commit
a120f11c1e
@ -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…
x
Reference in New Issue
Block a user