aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc
diff options
context:
space:
mode:
Diffstat (limited to 'mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc')
-rw-r--r--mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc23
1 files changed, 23 insertions, 0 deletions
diff --git a/mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc b/mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc
new file mode 100644
index 00000000..48c3b7e4
--- /dev/null
+++ b/mp/src/materialsystem/stdshaders/DebugTextureView_vs20.fxc
@@ -0,0 +1,23 @@
+// DYNAMIC: "COMPRESSED_VERTS" "0..1"
+
+#include "common_vs_fxc.h"
+
+struct VS_INPUT
+{
+ float4 vPos : POSITION;
+ float4 vTexCoord0 : TEXCOORD0;
+};
+
+struct VS_OUTPUT
+{
+ float4 vProjPos : POSITION;
+ float2 vUv0 : TEXCOORD0;
+};
+
+VS_OUTPUT main( const VS_INPUT i )
+{
+ VS_OUTPUT o;
+ o.vProjPos.xyzw = mul( i.vPos.xyzw, cModelViewProj );
+ o.vUv0.xy = i.vTexCoord0.xy;
+ return o;
+}