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

16 lines
271 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
uint {DataInterfaceName}_Index;
uint {DataInterfaceName}_Count;
uint ReadIndex_{DataInterfaceName}()
{
return {DataInterfaceName}_Index;
}
uint ReadCount_{DataInterfaceName}()
{
return {DataInterfaceName}_Count;
}