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

17 lines
450 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
/*=============================================================================
DownsampleVertexShader_F32.usf: Filter vertex shader source.
=============================================================================*/
void main(
float4 Position : POSITION,
float2 UV : TEXCOORD0,
out float2 OutUV : TEXCOORD0,
out float4 OutPosition : POSITION
)
{
OutPosition = Position;
OutUV = UV;
}