mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Forbid function declaration with a const qualifier in shaders
This commit is contained in:
parent
9221294653
commit
dc6f90acd8
@ -9640,6 +9640,11 @@ Error ShaderLanguage::_parse_shader(const HashMap<StringName, FunctionInfo> &p_f
|
||||
break;
|
||||
}
|
||||
|
||||
if (is_constant) {
|
||||
_set_error(vformat(RTR("'%s' qualifier cannot be used with a function return type."), "const"));
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
FunctionInfo builtins;
|
||||
if (p_functions.has(name)) {
|
||||
builtins = p_functions[name];
|
||||
|
Loading…
Reference in New Issue
Block a user