Fix blitting from negative position
(cherry picked from commit 6dc9a1b475
)
This commit is contained in:
parent
58c87e5d26
commit
fc38c87030
|
@ -1636,7 +1636,8 @@ void Image::blit_rect(const Ref<Image> &p_src, const Rect2 &p_src_rect, const Po
|
||||||
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest, clipped_src_rect.size));
|
Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
|
||||||
|
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
|
||||||
|
|
||||||
PoolVector<uint8_t>::Write wp = data.write();
|
PoolVector<uint8_t>::Write wp = data.write();
|
||||||
uint8_t *dst_data_ptr = wp.ptr();
|
uint8_t *dst_data_ptr = wp.ptr();
|
||||||
|
@ -1684,7 +1685,8 @@ void Image::blit_rect_mask(const Ref<Image> &p_src, const Ref<Image> &p_mask, co
|
||||||
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest, clipped_src_rect.size));
|
Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
|
||||||
|
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
|
||||||
|
|
||||||
PoolVector<uint8_t>::Write wp = data.write();
|
PoolVector<uint8_t>::Write wp = data.write();
|
||||||
uint8_t *dst_data_ptr = wp.ptr();
|
uint8_t *dst_data_ptr = wp.ptr();
|
||||||
|
@ -1735,7 +1737,8 @@ void Image::blend_rect(const Ref<Image> &p_src, const Rect2 &p_src_rect, const P
|
||||||
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest, clipped_src_rect.size));
|
Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
|
||||||
|
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
|
||||||
|
|
||||||
lock();
|
lock();
|
||||||
Ref<Image> img = p_src;
|
Ref<Image> img = p_src;
|
||||||
|
@ -1783,7 +1786,8 @@ void Image::blend_rect_mask(const Ref<Image> &p_src, const Ref<Image> &p_mask, c
|
||||||
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest, clipped_src_rect.size));
|
Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
|
||||||
|
Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
|
||||||
|
|
||||||
lock();
|
lock();
|
||||||
Ref<Image> img = p_src;
|
Ref<Image> img = p_src;
|
||||||
|
|
Loading…
Reference in New Issue