aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc
diff options
context:
space:
mode:
Diffstat (limited to 'mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc')
-rw-r--r--mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc12
1 files changed, 12 insertions, 0 deletions
diff --git a/mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc b/mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc
new file mode 100644
index 00000000..1dbb8b2f
--- /dev/null
+++ b/mp/src/materialsystem/stdshaders/lightmappedgeneric_lightingonly_overbright2_ps11.fxc
@@ -0,0 +1,12 @@
+sampler TextureSampler : register( s1 );
+
+struct PS_INPUT
+{
+ float4 vColor0 : COLOR0;
+ float2 vTexCoord1 : TEXCOORD1;
+};
+
+float4 main( PS_INPUT i ) : COLOR
+{
+ return tex2D( TextureSampler, i.vTexCoord1 );
+} \ No newline at end of file