aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc
diff options
context:
space:
mode:
Diffstat (limited to 'mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc')
-rw-r--r--mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc23
1 files changed, 23 insertions, 0 deletions
diff --git a/mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc b/mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc
new file mode 100644
index 00000000..9891502e
--- /dev/null
+++ b/mp/src/materialsystem/stdshaders/depthtodestalpha_vs20.fxc
@@ -0,0 +1,23 @@
+#include "common_vs_fxc.h"
+
+struct VS_INPUT
+{
+ float4 vPos : POSITION;
+};
+
+struct VS_OUTPUT
+{
+ float4 vProjPos : POSITION;
+ float projPosZ : TEXCOORD0;
+};
+
+
+VS_OUTPUT main( const VS_INPUT v )
+{
+ VS_OUTPUT o = ( VS_OUTPUT )0;
+
+ o.vProjPos = mul( v.vPos, cModelViewProj );
+ o.projPosZ = o.vProjPos.z;
+
+ return o;
+}