Skip to content

Commit a73efd5

Browse files
authored
Add Vk.Version13 property (#804)
1 parent f0d480c commit a73efd5

File tree

1 file changed

+1
-0
lines changed
  • src/Vulkan/Silk.NET.Vulkan

1 file changed

+1
-0
lines changed

src/Vulkan/Silk.NET.Vulkan/Vk.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public Device? CurrentDevice
4747
public static Version32 Version10 => new Version32(1, 0, 0);
4848
public static Version32 Version11 => new Version32(1, 1, 0);
4949
public static Version32 Version12 => new Version32(1, 2, 0);
50+
public static Version32 Version13 => new Version32(1, 3, 0);
5051

5152
public static Version32 MakeVersion
5253
(uint major, uint minor, uint patch = 0) => new Version32(major, minor, patch);

0 commit comments

Comments
 (0)