Files
UnrealEngine/Engine/Plugins/Animation/DeformerGraph/Shaders/Private/DataInterfaceLoopTerminal.ush
2025-05-18 13:04:45 +08: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;
}