-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix rendering artifacts #14805
Fix rendering artifacts #14805
Conversation
editor/editor_node.cpp
Outdated
@@ -270,7 +270,7 @@ void EditorNode::_notification(int p_what) { | |||
|
|||
Engine::get_singleton()->set_editor_hint(true); | |||
|
|||
get_tree()->get_root()->set_usage(Viewport::USAGE_2D_NO_SAMPLING); //reduce memory usage | |||
get_tree()->get_root()->set_usage(Viewport::USAGE_2D); //reduce memory usage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment is no longer relevant..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its really odd that this causes the issue, will need to check. As maybe a gl id is being deleted when it shouldn't
50f004f
to
7244320
Compare
ok |
ah, it was not closed automatically |
Issue #14390