From f234d2d440bcd0ba5effe79ec7502ab4907dd638 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 16 Mar 2023 19:41:35 +0100 Subject: [PATCH] Subdivision: remove info message that GPU subdivision being used This is the normal case, it's only when both CPU and GPU subdivision is used that the user needs to be informed that performance is suboptimal. --- source/blender/modifiers/intern/MOD_subsurf.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/blender/modifiers/intern/MOD_subsurf.cc b/source/blender/modifiers/intern/MOD_subsurf.cc index 440c36fe19f..74beb83c44c 100644 --- a/source/blender/modifiers/intern/MOD_subsurf.cc +++ b/source/blender/modifiers/intern/MOD_subsurf.cc @@ -437,9 +437,6 @@ static void panel_draw(const bContext *C, Panel *panel) if (runtime_data->used_cpu) { uiItemL(layout, "Using both CPU and GPU subdivision", ICON_INFO); } - else { - uiItemL(layout, "Using GPU subdivision", ICON_INFO); - } } } }