mirror of https://github.com/PCSX2/pcsx2.git
gsdx-d3d11: Port OSD shader from OGL
This commit is contained in:
parent
5713993777
commit
83d293d41c
|
@ -352,4 +352,23 @@ PS_OUTPUT ps_main17(PS_INPUT input)
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DUMMY
|
||||||
|
PS_OUTPUT ps_main18(PS_INPUT input)
|
||||||
|
{
|
||||||
|
PS_OUTPUT output;
|
||||||
|
|
||||||
|
output.c = input.p;
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
PS_OUTPUT ps_main19(PS_INPUT input)
|
||||||
|
{
|
||||||
|
PS_OUTPUT output;
|
||||||
|
|
||||||
|
output.c = input.c * float4(1.0, 1.0, 1.0, sample_c(input.t).r);
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue