css_enhanced_waf/materialsystem/stdshaders/morphweight_ps30.fxc

14 lines
179 B
Text
Raw Normal View History

2020-04-22 17:56:21 +01: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;
}