Linux: Fix case of test file.
This commit is contained in:
parent
76f7139789
commit
562394d112
1 changed files with 0 additions and 0 deletions
19
Test/spv.shiftOps.frag
Normal file
19
Test/spv.shiftOps.frag
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#version 450
|
||||
|
||||
uniform int i1;
|
||||
uniform uint u1;
|
||||
|
||||
uniform ivec3 i3;
|
||||
uniform uvec3 u3;
|
||||
|
||||
out ivec3 icolor;
|
||||
out uvec3 ucolor;
|
||||
|
||||
void main()
|
||||
{
|
||||
icolor = i3 << u1;
|
||||
icolor <<= 4u;
|
||||
|
||||
ucolor = u3 >> i1;
|
||||
ucolor >>= 5;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue