Revert "Use a Texture2DArray in HLSL to match the SRVs"

This reverts commit d389f9a6e9.
This commit is contained in:
Cameron Gutman
2024-06-29 14:07:41 -05:00
parent 93408386ae
commit 1a1ce05959
10 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
struct ShaderInput
{
float2 pos : POSITION;
float3 tex : TEXCOORD0;
float2 tex : TEXCOORD0;
};
struct ShaderOutput
{
float4 pos : SV_POSITION;
float3 tex : TEXCOORD0;
float2 tex : TEXCOORD0;
};
ShaderOutput main(ShaderInput input)