summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/vector.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/vector.fx')
-rw-r--r--hlsl/vector.fx10
1 files changed, 5 insertions, 5 deletions
diff --git a/hlsl/vector.fx b/hlsl/vector.fx
index 19267453f30..1e94042ad5e 100644
--- a/hlsl/vector.fx
+++ b/hlsl/vector.fx
@@ -1,7 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//-----------------------------------------------------------------------------
-// Effect File Variables
+// Vector Effect
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
@@ -32,7 +32,7 @@ struct PS_INPUT
};
//-----------------------------------------------------------------------------
-// Simple Vertex Shader
+// Vector Vertex Shader
//-----------------------------------------------------------------------------
uniform float2 ScreenDims;
@@ -59,7 +59,7 @@ VS_OUTPUT vs_main(VS_INPUT Input)
}
//-----------------------------------------------------------------------------
-// Simple Pixel Shader
+// Vector Pixel Shader
//-----------------------------------------------------------------------------
// TimeParams.x: Frame time of the vector
@@ -80,10 +80,10 @@ float4 ps_main(PS_INPUT Input) : COLOR
}
//-----------------------------------------------------------------------------
-// Simple Effect
+// Vector Technique
//-----------------------------------------------------------------------------
-technique TestTechnique
+technique DefaultTechnique
{
pass Pass0
{