Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void TransferNormalOverlayValues(const UE::Geometry::FDynamicMeshNormalOverlay& TargetOverlay, UE::Geometry::FDynamicMeshNormalOverlay& ProxyOverlay, const FVertexMappingAttribute& SourceAttr, const TMap<int32, int32>& MappedTargetToMeshTarget)
- {
- const int32 NumElements = ProxyOverlay.MaxElementID();
- const int32 NumTasks = FMath::Max(FMath::Min(FTaskGraphInterface::Get().GetNumWorkerThreads(), NumElements), 1);
- constexpr int32 MinVerticesByTask = 20;
- const int32 VerticesByTask = FMath::Max(FMath::Max(FMath::DivideAndRoundUp(NumElements, NumTasks), MinVerticesByTask), 1);
- const int32 NumBatches = FMath::DivideAndRoundUp(NumElements, VerticesByTask);
- TArray<UE::Tasks::FTask> PendingTasks;
- PendingTasks.Reserve(NumBatches);
- for (int32 BatchIndex = 0; BatchIndex < NumBatches; BatchIndex++)
- {
- const int32 StartIndex = BatchIndex * VerticesByTask;
- int32 EndIndex = (BatchIndex + 1) * VerticesByTask;
- EndIndex = BatchIndex == NumBatches - 1 ? FMath::Min(NumElements, EndIndex) : EndIndex;
- UE::Tasks::FTask PendingTask = UE::Tasks::Launch(UE_SOURCE_LOCATION, [&ProxyOverlay, &SourceAttr, &TargetOverlay, &MappedTargetToMeshTarget, StartIndex, EndIndex]()
- {
- TArray<int32> TargetVertexElements; // Reused array
- for (int32 ProxyElementID = StartIndex; ProxyElementID < EndIndex; ProxyElementID++)
- {
- if (ProxyOverlay.IsElement(ProxyElementID))
- {
- const int32 ProxyVID = ProxyOverlay.GetParentVertex(ProxyElementID);
- const int32 MappedVID = SourceAttr.GetMappedValue(ProxyVID);
- if (const int32* const TargetVID = MappedTargetToMeshTarget.Find(MappedVID))
- {
- TargetOverlay.GetVertexElements(*TargetVID, TargetVertexElements);
- if (ensure(TargetVertexElements.Num() > 0))
- {
- ensure(TargetVertexElements.Num() == 1);
- ProxyOverlay.SetElement(ProxyElementID, TargetOverlay.GetElement(TargetVertexElements[0]));
- }
- }
- }
- }
- });
- PendingTasks.Add(PendingTask);
- }
- UE::Tasks::Wait(PendingTasks);
- }
Advertisement
Comments
-
- Push Link : https://github.com/EpicGames/UnrealEngine/commit/a9535e1275d2612f28fda63d9b23ba13ea108acf
Add Comment
Please, Sign In to add comment
Advertisement