SPV: Don't support noise*() when generating SPV.

This commit is contained in:
John Kessenich
2017-11-03 03:39:48 -06:00
parent af52799c2d
commit 2edde6665d
6 changed files with 32 additions and 8 deletions

View File

@@ -95,3 +95,11 @@ void callUserTexture()
gl_NumSamples; // ERROR, not for Vulkan
}
void noise()
{
noise1(dv4);
noise2(4.0);
noise3(vec2(3));
noise4(dv4);
}