Fix rounding error in Clip Content
Rounds the position and size of the final clip rect to avoid flickering issues. Fixes https://github.com/godotengine/godot/issues/46493
This commit is contained in:
parent
8385a0d8ad
commit
31a0f7fb0f
1 changed files with 2 additions and 0 deletions
|
@ -128,6 +128,8 @@ void VisualServerCanvas::_render_canvas_item(Item *p_canvas_item, const Transfor
|
||||||
} else {
|
} else {
|
||||||
ci->final_clip_rect = global_rect;
|
ci->final_clip_rect = global_rect;
|
||||||
}
|
}
|
||||||
|
ci->final_clip_rect.position = ci->final_clip_rect.position.round();
|
||||||
|
ci->final_clip_rect.size = ci->final_clip_rect.size.round();
|
||||||
ci->final_clip_owner = ci;
|
ci->final_clip_owner = ci;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue