Files
UnrealEngine/Engine/Plugins/Animation/DeformerGraph/Shaders/Private/DataInterfaceCustomComputeKernel.ush
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
485 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
uint3 {DataInterfaceName}_NumThreads;
uint {DataInterfaceName}_NumThreadsPerInvocation;
uint {DataInterfaceName}_ThreadIndexOffset;
uint3 ReadNumThreads_{DataInterfaceName}()
{
return {DataInterfaceName}_NumThreads;
}
uint ReadNumThreadsPerInvocation_{DataInterfaceName}()
{
return {DataInterfaceName}_NumThreadsPerInvocation;
}
uint ReadThreadIndexOffset_{DataInterfaceName}()
{
return {DataInterfaceName}_ThreadIndexOffset;
}