13 lines
305 B
C++
13 lines
305 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Templates/Function.h"
|
|
|
|
namespace mu::ParallelExecutionUtils
|
|
{
|
|
void InvokeBatchParallelFor(int32 Num, TFunctionRef<void(int32)> Body);
|
|
void InvokeBatchParallelForSingleThread(int32 Num, TFunctionRef<void(int32)> Body);
|
|
}
|
|
|