Realize depth code review fixes #6

Merged
Arye Ramaty merged 10 commits from David-Haver/blender:realize-depth into WIP-realize-depth 2024-04-22 11:18:11 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8afa69f54b - Show all commits

View File

@ -14,5 +14,5 @@ bke::GeometrySet join_geometries(Span<bke::GeometrySet> geometries,
void join_attributes(const Span<const bke::GeometryComponent *> src_components,
bke::GeometryComponent &r_result,
const Span<StringRef> ignored_attributes = {})
const Span<StringRef> ignored_attributes = {});
} // namespace blender::geometry

View File

@ -75,7 +75,7 @@ static void fill_new_attribute(const Span<const GeometryComponent *> src_compone
void join_attributes(const Span<const GeometryComponent *> src_components,
GeometryComponent &result,
const Span<StringRef> ignored_attributes = {})
const Span<StringRef> ignored_attributes)
{
const Map<AttributeIDRef, AttributeMetaData> info = get_final_attribute_info(src_components,
ignored_attributes);