summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2023-02-14 10:30:02 -0800
committerclayjohn <claynjohn@gmail.com>2023-02-14 10:30:02 -0800
commit081b31d20091806eb32d13561df997fd734ca7b3 (patch)
treeebf9fc695d8ca0457b1b3cbbc2f3a9356c385bff /scene/main
parent8c7b98d4526c6ba66d7f1636abb71ccbe54727c6 (diff)
Clear Window before blitting Viewport in gl_compatibility renderer
Diffstat (limited to 'scene/main')
-rw-r--r--scene/main/window.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/scene/main/window.cpp b/scene/main/window.cpp
index 6fbf6ccb81..b79a9ba444 100644
--- a/scene/main/window.cpp
+++ b/scene/main/window.cpp
@@ -984,17 +984,13 @@ void Window::_update_viewport_size() {
Size2 margin;
Size2 offset;
- //black bars and margin
+
if (content_scale_aspect != CONTENT_SCALE_ASPECT_EXPAND && screen_size.x < video_mode.x) {
margin.x = Math::round((video_mode.x - screen_size.x) / 2.0);
- //RenderingServer::get_singleton()->black_bars_set_margins(margin.x, 0, margin.x, 0);
offset.x = Math::round(margin.x * viewport_size.y / screen_size.y);
} else if (content_scale_aspect != CONTENT_SCALE_ASPECT_EXPAND && screen_size.y < video_mode.y) {
margin.y = Math::round((video_mode.y - screen_size.y) / 2.0);
- //RenderingServer::get_singleton()->black_bars_set_margins(0, margin.y, 0, margin.y);
offset.y = Math::round(margin.y * viewport_size.x / screen_size.x);
- } else {
- //RenderingServer::get_singleton()->black_bars_set_margins(0, 0, 0, 0);
}
switch (content_scale_mode) {