Skip to content

Commit 81da8d7

Browse files
committed
Add Vulkan1_4 in EnvVersion
1 parent d3cac66 commit 81da8d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

shaderc-rs/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ pub enum EnvVersion {
206206
Vulkan1_1 = (1 << 22) | (1 << 12),
207207
Vulkan1_2 = (1 << 22) | (2 << 12),
208208
Vulkan1_3 = (1 << 22) | (3 << 12),
209+
Vulkan1_4 = (1 << 22) | (4 << 12),
209210
// For OpenGL, use the number from #version in shaders.
210211
// Currently no difference between OpenGL 4.5 and 4.6.
211212
// See glslang/Standalone/Standalone.cpp

0 commit comments

Comments
 (0)