2021-07-24 21:11:47 -07:00

23 lines
569 B
Plaintext

//========== Copyright (c) Valve Corporation, All rights reserved. ==========//
#include "common_ps_fxc.h"
struct PS_INPUT
{
float2 coordTap0 : TEXCOORD0;
float4 vertexColor : TEXCOORD1;
};
float4 Constant_color : register( c0 );
float4 main( PS_INPUT i ) : COLOR
{
float4 vOutputColor = i.vertexColor * Constant_color;
// Slamming output alpha to 1.0f because screenspace_general always enables alpha testing (argh)
vOutputColor.a = 1.0f;
return FinalOutput( vOutputColor, 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE ); //Constant_color;
}