mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 12:06:07 +08:00
SDK sync.
This commit is contained in:
12
materialsystem/stdshaders/unlitgeneric_ps11.fxc
Normal file
12
materialsystem/stdshaders/unlitgeneric_ps11.fxc
Normal file
@ -0,0 +1,12 @@
|
||||
sampler TextureSampler : register( s0 );
|
||||
|
||||
struct PS_INPUT
|
||||
{
|
||||
float4 vColor0 : COLOR0;
|
||||
float2 vTexCoord0 : TEXCOORD0;
|
||||
};
|
||||
|
||||
float4 main( PS_INPUT i ) : COLOR
|
||||
{
|
||||
return i.vColor0 * tex2D( TextureSampler, i.vTexCoord0 );
|
||||
}
|
Reference in New Issue
Block a user