diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-04-19 16:30:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 16:30:08 +0200 |
commit | 3ca45148668b8c25883371c7bf39490a943f0de5 (patch) | |
tree | 58ba3876dabd545f97e86edde10c44602c6687d3 /core/io/image.h | |
parent | a7b152d15b0b7f370195f39cf9e7e06091eae412 (diff) | |
parent | 4038bc0c369578c7483a5b1eae31e1ab4f35db34 (diff) | |
download | redot-engine-3ca45148668b8c25883371c7bf39490a943f0de5.tar.gz |
Merge pull request #50175 from kleonc/image-blit-blend-fix-rects
`Image.blit_rect/blend_rect` Fix rects calculations for negative arguments
Diffstat (limited to 'core/io/image.h')
-rw-r--r-- | core/io/image.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/image.h b/core/io/image.h index 7e1e853244..1025554d51 100644 --- a/core/io/image.h +++ b/core/io/image.h @@ -175,6 +175,8 @@ private: static int _get_dst_image_size(int p_width, int p_height, Format p_format, int &r_mipmaps, int p_mipmaps = -1, int *r_mm_width = nullptr, int *r_mm_height = nullptr); bool _can_modify(Format p_format) const; + _FORCE_INLINE_ void _get_clipped_src_and_dest_rects(const Ref<Image> &p_src, const Rect2i &p_src_rect, const Point2i &p_dest, Rect2i &r_clipped_src_rect, Rect2i &r_clipped_dest_rect) const; + _FORCE_INLINE_ void _put_pixelb(int p_x, int p_y, uint32_t p_pixel_size, uint8_t *p_data, const uint8_t *p_pixel); _FORCE_INLINE_ void _get_pixelb(int p_x, int p_y, uint32_t p_pixel_size, const uint8_t *p_data, uint8_t *p_pixel); |