We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3cac66 commit 81da8d7Copy full SHA for 81da8d7
shaderc-rs/src/lib.rs
@@ -206,6 +206,7 @@ pub enum EnvVersion {
206
Vulkan1_1 = (1 << 22) | (1 << 12),
207
Vulkan1_2 = (1 << 22) | (2 << 12),
208
Vulkan1_3 = (1 << 22) | (3 << 12),
209
+ Vulkan1_4 = (1 << 22) | (4 << 12),
210
// For OpenGL, use the number from #version in shaders.
211
// Currently no difference between OpenGL 4.5 and 4.6.
212
// See glslang/Standalone/Standalone.cpp
0 commit comments