From e3b3462187b4c3980fd992dbcdff255346fcfd04 Mon Sep 17 00:00:00 2001 From: Atlinx Date: Mon, 29 Aug 2022 19:14:30 -0400 Subject: [PATCH] Remove HDR warning if on low end --- scene/main/viewport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index ae329e1e9cf..abfc06cd502 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -3031,7 +3031,7 @@ String Viewport::get_configuration_warning() const { warning += TTR("The Viewport size must be greater than or equal to 2 pixels on both dimensions to render anything."); } - if (hdr && (usage == USAGE_2D || usage == USAGE_2D_NO_SAMPLING)) { + if (!VisualServer::get_singleton()->is_low_end() && hdr && (usage == USAGE_2D || usage == USAGE_2D_NO_SAMPLING)) { if (warning != String()) { warning += "\n\n"; }