summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/color.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/color.fx')
-rw-r--r--hlsl/color.fx4
1 files changed, 0 insertions, 4 deletions
diff --git a/hlsl/color.fx b/hlsl/color.fx
index b28fb2c3000..8b618eb325a 100644
--- a/hlsl/color.fx
+++ b/hlsl/color.fx
@@ -24,7 +24,6 @@ struct VS_OUTPUT
float4 Position : POSITION;
float4 Color : COLOR0;
float2 TexCoord : TEXCOORD0;
- float2 ExtraInfo : TEXCOORD1;
};
struct VS_INPUT
@@ -32,14 +31,12 @@ struct VS_INPUT
float4 Position : POSITION;
float4 Color : COLOR0;
float2 TexCoord : TEXCOORD0;
- float2 ExtraInfo : TEXCOORD1;
};
struct PS_INPUT
{
float4 Color : COLOR0;
float2 TexCoord : TEXCOORD0;
- float2 ExtraInfo : TEXCOORD1;
};
//-----------------------------------------------------------------------------
@@ -70,7 +67,6 @@ VS_OUTPUT vs_main(VS_INPUT Input)
Output.Position *= float4(2.0f, 2.0f, 1.0f, 1.0f);
Output.Color = Input.Color;
Output.TexCoord = Input.TexCoord;
- Output.ExtraInfo = Input.ExtraInfo;
return Output;
}