source-engine/materialsystem/stdshaders/morphweight_ps30.fxc

14 lines
179 B
Plaintext
Raw Permalink Normal View History

2020-04-22 16:56:21 +00:00
#define HDRTYPE HDR_TYPE_NONE
#include "common_ps_fxc.h"
struct PS_INPUT
{
float4 vMorphWeights : TEXCOORD0;
};
HALF4 main( PS_INPUT i ) : COLOR
{
return i.vMorphWeights;
}