Tests: Trigger more texture tests, and hopefully see build failure go away.

(This is motivated by wanting to retickle the tests.)
This commit is contained in:
John Kessenich 2017-11-28 23:47:08 -07:00
parent 1ce94b2d68
commit ffc31cdc5c
3 changed files with 159 additions and 90 deletions

View file

@ -17,7 +17,10 @@ FxaaTex fillOpaque()
float4 main() : SV_TARGET0
{
FxaaTex tex1 = { g_tInputTexture_sampler, g_tInputTexture };
float4 res = lookUp(tex1);
FxaaTex tex2 = fillOpaque();
res += lookUp(tex2);
FxaaTex tex3 = tex1;
return lookUp(tex3);
res += lookUp(tex3);
return res;
}