diff options
Diffstat (limited to 'modules/webp/webp_common.cpp')
-rw-r--r-- | modules/webp/webp_common.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/webp/webp_common.cpp b/modules/webp/webp_common.cpp index eb9403dcc2..60cb0091e1 100644 --- a/modules/webp/webp_common.cpp +++ b/modules/webp/webp_common.cpp @@ -33,10 +33,11 @@ #include "core/config/project_settings.h" #include "core/os/os.h" -#include <string.h> #include <webp/decode.h> #include <webp/encode.h> +#include <string.h> + namespace WebPCommon { Vector<uint8_t> _webp_lossy_pack(const Ref<Image> &p_image, float p_quality) { ERR_FAIL_COND_V(p_image.is_null() || p_image->is_empty(), Vector<uint8_t>()); |