WIP: SPV Remapper: add remapper test framework
This commit is contained in:
parent
4c3a7fd100
commit
a8456415b8
52 changed files with 3067 additions and 9 deletions
12
Test/remap.if.everything.frag
Normal file
12
Test/remap.if.everything.frag
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#version 450
|
||||
|
||||
in float inf;
|
||||
out vec4 outf4;
|
||||
|
||||
void main()
|
||||
{
|
||||
if (inf > 2.0)
|
||||
outf4 = vec4(inf);
|
||||
else
|
||||
outf4 = vec4(inf + -.5);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue