UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Parallel.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
7namespace Chaos
8{
14 //void CHAOS_API PhysicsParallelFor_RecursiveDivide(int32 InNum, TFunctionRef<void(int32)> InCallable, bool bForceSingleThreaded = false);
15
22
30}
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition AssetRegistryState.h:50
Definition SkeletalMeshComponent.h:307
bool CHAOS_API ShouldExecuteTasksInParallel(int32 InTaskNum)
Definition Parallel.cpp:199
void CHAOS_API PhysicsParallelForWithContext(int32 InNum, TFunctionRef< int32(int32, int32)> InContextCreator, TFunctionRef< void(int32, int32)> InCallable, bool bForceSingleThreaded=false)
Definition Parallel.cpp:162
void CHAOS_API PhysicsParallelFor(int32 InNum, TFunctionRef< void(int32)> InCallable, bool bForceSingleThreaded=false)
Definition Parallel.cpp:55
CHAOS_API bool bDisableCollisionParallelFor
Definition Parallel.cpp:20
CHAOS_API int32 MinParallelTaskSize
Definition Parallel.cpp:16
void CHAOS_API InnerPhysicsParallelForRange(int32 InNum, TFunctionRef< void(int32, int32)> InCallable, const int32 MinBatchSize, bool bForceSingleThreaded=false)
Definition Parallel.cpp:44
CHAOS_API int32 MaxNumWorkers
Definition Parallel.cpp:13
CHAOS_API bool bDisablePhysicsParallelFor
Definition Parallel.cpp:18
void CHAOS_API InnerPhysicsParallelFor(int32 InNum, TFunctionRef< void(int32)> InCallable, bool bForceSingleThreaded=false)
Definition Parallel.cpp:33
void CHAOS_API PhysicsParallelForRange(int32 InNum, TFunctionRef< void(int32, int32)> InCallable, const int32 MinBatchSize, bool bForceSingleThreaded=false)
Definition Parallel.cpp:96
CHAOS_API int32 SmallBatchSize
Definition Parallel.cpp:14
CHAOS_API bool bDisableParticleParallelFor
Definition Parallel.cpp:19
CHAOS_API int32 LargeBatchSize
Definition Parallel.cpp:15