gsdx-d3d11: Port OSD shader from OGL

This commit is contained in:
KrossX 2018-12-14 10:37:05 -05:00 committed by lightningterror
parent 5713993777
commit 83d293d41c
1 changed files with 19 additions and 0 deletions

View File

@ -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