1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Standardize terms for renderers in error strings

Use "Forward+", "Mobile", "Compatibility", and "renderer" or "rendering method".
This commit is contained in:
tetrapod00
2024-11-01 17:00:35 -07:00
parent 0f5f3bc954
commit 899f5151c3
18 changed files with 39 additions and 39 deletions

View File

@@ -34,7 +34,7 @@ Error RDShaderFile::parse_versions_from_text(const String &p_text, const String
ERR_FAIL_NULL_V_MSG(
RenderingDevice::get_singleton(),
ERR_UNAVAILABLE,
"Cannot import custom .glsl shaders when running without a RenderingDevice. This can happen if you are using the headless more or the Compatibility backend.");
"Cannot import custom .glsl shaders when running without a RenderingDevice. This can happen if you are using the headless more or the Compatibility renderer.");
Vector<String> lines = p_text.split("\n");