mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
14 lines
224 B
Plaintext
14 lines
224 B
Plaintext
![]() |
//========== Copyright (c) Valve Corporation, All rights reserved. ==========//
|
||
|
|
||
|
#include "common_ps_fxc.h"
|
||
|
|
||
|
struct PS_INPUT
|
||
|
{
|
||
|
float4 vColor : COLOR0;
|
||
|
};
|
||
|
|
||
|
HALF4 main( PS_INPUT i ) : COLOR
|
||
|
{
|
||
|
return i.vColor;
|
||
|
}
|