mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Exclude incorrect completion options for render_mode
in shaders
This commit is contained in:
parent
fb10f45efe
commit
719741b0eb
@ -8027,6 +8027,9 @@ Error ShaderLanguage::_parse_shader(const HashMap<StringName, FunctionInfo> &p_f
|
||||
while (tk.type != TK_EOF) {
|
||||
switch (tk.type) {
|
||||
case TK_RENDER_MODE: {
|
||||
#ifdef DEBUG_ENABLED
|
||||
keyword_completion_context = CF_UNSPECIFIED;
|
||||
#endif // DEBUG_ENABLED
|
||||
while (true) {
|
||||
StringName mode;
|
||||
_get_completable_identifier(nullptr, COMPLETION_RENDER_MODE, mode);
|
||||
@ -8114,6 +8117,9 @@ Error ShaderLanguage::_parse_shader(const HashMap<StringName, FunctionInfo> &p_f
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
}
|
||||
#ifdef DEBUG_ENABLED
|
||||
keyword_completion_context = CF_GLOBAL_SPACE;
|
||||
#endif // DEBUG_ENABLED
|
||||
} break;
|
||||
case TK_STRUCT: {
|
||||
ShaderNode::Struct st;
|
||||
|
Loading…
Reference in New Issue
Block a user