2012-11-27 03:23:19 +00:00
|
|
|
struct a2v
|
|
|
|
{
|
|
|
|
float4 pos: POSITION;
|
|
|
|
float2 tc: TEXCOORD0;
|
|
|
|
float4 vcol: COLOR0;
|
|
|
|
};
|
|
|
|
struct v2f
|
|
|
|
{
|
|
|
|
float4 pos: SV_POSITION;
|
|
|
|
float2 tc: TEXCOORD0;
|
|
|
|
float4 vcol: COLOR0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#include <ftedefs.h>
|
|
|
|
|
|
|
|
#ifdef VERTEX_SHADER
|
|
|
|
v2f main (a2v inp)
|
|
|
|
{
|
|
|
|
v2f outp;
|
2015-05-03 19:57:46 +00:00
|
|
|
outp.pos = mul(m_projection, inp.pos);
|
2012-11-27 03:23:19 +00:00
|
|
|
outp.tc = inp.tc;
|
|
|
|
outp.vcol = inp.vcol;
|
|
|
|
return outp;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FRAGMENT_SHADER
|
2015-05-03 19:57:46 +00:00
|
|
|
Texture2D t_t0;
|
|
|
|
SamplerState s_t0;
|
2012-11-27 03:23:19 +00:00
|
|
|
float4 main (v2f inp) : SV_TARGET
|
|
|
|
{
|
2015-05-03 19:57:46 +00:00
|
|
|
return t_t0.Sample(s_t0, inp.tc) * inp.vcol;
|
2012-11-27 03:23:19 +00:00
|
|
|
}
|
|
|
|
#endif
|