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.
This commit is contained in:
Brecht Van Lommel
2023-03-16 19:41:35 +01:00
parent a958ae36e8
commit f234d2d440

View File

@@ -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);
}
}
}
}