commit | 6c292d3ba78533fed7b5ec46bb93b53419cf6535 | [log] [tgz] |
---|---|---|
author | John Kessenich <cepheus@frii.com> | Mon Feb 15 20:58:50 2016 -0700 |
committer | John Kessenich <cepheus@frii.com> | Mon Feb 15 21:46:55 2016 -0700 |
tree | 86a9ca538c45ad0f6bc1fa9ce94a7ee9060f5f91 | |
parent | 019f08fcd8dc787a6b49a20a65fc4c890f822bcb [diff] [blame] |
SPV: Implement Vulkan version of GLSL (KHR_vulkan_glsl).
diff --git a/Test/spv.uniformArray.frag b/Test/spv.uniformArray.frag index 11a353a..b7625af 100644 --- a/Test/spv.uniformArray.frag +++ b/Test/spv.uniformArray.frag
@@ -1,8 +1,9 @@ #version 140 + uniform sampler2D texSampler2D; -uniform vec3 inColor; -uniform vec4 color[6]; -uniform float alpha[16]; +in vec3 inColor; +in vec4 color[6]; +in float alpha[16]; void main() {