Advertisement
TheRedPixel

Unreal 5.6 Skeletal Mesh Multi-Threaded Optimization

Apr 3rd, 2025
603
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.10 KB | Source Code | 0 0
  1. static void TransferNormalOverlayValues(const UE::Geometry::FDynamicMeshNormalOverlay& TargetOverlay, UE::Geometry::FDynamicMeshNormalOverlay& ProxyOverlay, const FVertexMappingAttribute& SourceAttr, const TMap<int32, int32>& MappedTargetToMeshTarget)
  2.         {
  3.             const int32 NumElements = ProxyOverlay.MaxElementID();
  4.             const int32 NumTasks = FMath::Max(FMath::Min(FTaskGraphInterface::Get().GetNumWorkerThreads(), NumElements), 1);
  5.             constexpr int32 MinVerticesByTask = 20;
  6.             const int32 VerticesByTask = FMath::Max(FMath::Max(FMath::DivideAndRoundUp(NumElements, NumTasks), MinVerticesByTask), 1);
  7.             const int32 NumBatches = FMath::DivideAndRoundUp(NumElements, VerticesByTask);
  8.             TArray<UE::Tasks::FTask> PendingTasks;
  9.             PendingTasks.Reserve(NumBatches);
  10.             for (int32 BatchIndex = 0; BatchIndex < NumBatches; BatchIndex++)
  11.             {
  12.                 const int32 StartIndex = BatchIndex * VerticesByTask;
  13.                 int32 EndIndex = (BatchIndex + 1) * VerticesByTask;
  14.                 EndIndex = BatchIndex == NumBatches - 1 ? FMath::Min(NumElements, EndIndex) : EndIndex;
  15.                 UE::Tasks::FTask PendingTask = UE::Tasks::Launch(UE_SOURCE_LOCATION, [&ProxyOverlay, &SourceAttr, &TargetOverlay, &MappedTargetToMeshTarget, StartIndex, EndIndex]()
  16.                 {
  17.                     TArray<int32> TargetVertexElements; // Reused array
  18.                     for (int32 ProxyElementID = StartIndex; ProxyElementID < EndIndex; ProxyElementID++)
  19.                     {
  20.                         if (ProxyOverlay.IsElement(ProxyElementID))
  21.                         {
  22.                             const int32 ProxyVID = ProxyOverlay.GetParentVertex(ProxyElementID);
  23.                             const int32 MappedVID = SourceAttr.GetMappedValue(ProxyVID);
  24.                             if (const int32* const TargetVID = MappedTargetToMeshTarget.Find(MappedVID))
  25.                             {
  26.                                 TargetOverlay.GetVertexElements(*TargetVID, TargetVertexElements);
  27.                                 if (ensure(TargetVertexElements.Num() > 0))
  28.                                 {
  29.                                     ensure(TargetVertexElements.Num() == 1);
  30.                                     ProxyOverlay.SetElement(ProxyElementID, TargetOverlay.GetElement(TargetVertexElements[0]));
  31.                                 }
  32.                             }
  33.                         }
  34.                     }
  35.                 });
  36.                 PendingTasks.Add(PendingTask);
  37.             }
  38.             UE::Tasks::Wait(PendingTasks);
  39.         }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement