Files
ZHGD_Web/Assets/Art/Art Plugins/GPUInstancer/Shaders/Include/GPUIShaderGraphInclude.cginc
2025-07-13 23:16:20 +08:00

14 lines
248 B
HLSL

#include "GPUInstancerInclude.cginc"
#ifndef GPUI_SG_INCLUDED
#define GPUI_SG_INCLUDED
void gpuiDummy_float(float3 Input, out float3 Output)
{
Output = Input;
}
void gpuiDummy_half(half3 Input, out half3 Output)
{
Output = Input;
}
#endif