WIP: SPV Remapper: add remapper test framework

This commit is contained in:
steve-lunarg
2016-08-17 16:18:06 -06:00
parent 4c3a7fd100
commit a8456415b8
52 changed files with 3067 additions and 9 deletions

View File

@@ -0,0 +1,30 @@
#version 450
out vec4 outf4;
in flat ivec4 ini4;
in float inf;
float Test1(int bound)
{
float r = 0;
for (int x=0; x<bound; ++x)
r += 0.5;
r += 0.2;
return r;
}
float Test2(int bound)
{
if (bound > 2) {
return Test1(bound * 2);
} else
return float(bound * 4 +
ini4.y * ini4.z +
ini4.x);
}
void main()
{
outf4 = vec4(Test1(int(inf)) +
Test2(int(inf)));
}