Merge pull request #21183 from Chaosus/mat_varyings
Allow matrixes in varyings
This commit is contained in:
commit
faa49c1829
1 changed files with 2 additions and 2 deletions
|
@ -3875,8 +3875,8 @@ Error ShaderLanguage::_parse_shader(const Map<StringName, FunctionInfo> &p_funct
|
|||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
if (!uniform && (type < TYPE_FLOAT || type > TYPE_VEC4)) {
|
||||
_set_error("Invalid type for varying, only float,vec2,vec3,vec4 allowed.");
|
||||
if (!uniform && (type < TYPE_FLOAT || type > TYPE_MAT4)) {
|
||||
_set_error("Invalid type for varying, only float,vec2,vec3,vec4,mat2,mat3,mat4 allowed.");
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue