initial
This commit is contained in:
15
materialsystem/stdshaders/playstation_test_ps2x.fxc
Normal file
15
materialsystem/stdshaders/playstation_test_ps2x.fxc
Normal file
@@ -0,0 +1,15 @@
|
||||
//====== Copyright <20> 1996-2007, Valve Corporation, All rights reserved. ===========================
|
||||
|
||||
#include "common_ps_fxc.h"
|
||||
|
||||
sampler g_tTestTexture : register( s0 );
|
||||
|
||||
struct PS_INPUT
|
||||
{
|
||||
float2 vUv0 : TEXCOORD0;
|
||||
};
|
||||
|
||||
float4 main( PS_INPUT i ) : COLOR
|
||||
{
|
||||
return float4( 0.05, 0.05, 0.05, 1 ) + tex2D( g_tTestTexture, i.vUv0 );
|
||||
}
|
||||
Reference in New Issue
Block a user