Merge branch 'blender-v3.1-release'

This commit is contained in:
2022-02-14 18:01:52 -06:00
2 changed files with 20 additions and 1 deletions

View File

@@ -397,7 +397,9 @@ GLShaderInterface::GLShaderInterface(GLuint program, const shader::ShaderCreateI
else {
input->location = input->binding = attr.index;
}
enabled_attr_mask_ |= (1 << input->location);
if (input->location != -1) {
enabled_attr_mask_ |= (1 << input->location);
}
input++;
}