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

@@ -255,6 +255,23 @@ class SpreadsheetLayoutDrawer : public SpreadsheetDrawer {
} }
} }
} }
else if (data.type().is<std::string>()) {
uiDefIconTextBut(params.block,
UI_BTYPE_LABEL,
0,
ICON_NONE,
data.get<std::string>(real_index).c_str(),
params.xmin,
params.ymin,
params.width,
params.height,
nullptr,
0,
0,
0,
0,
nullptr);
}
} }
void draw_float_vector(const CellDrawParams &params, const Span<float> values) const void draw_float_vector(const CellDrawParams &params, const Span<float> values) const

View File

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