Skip to content

Commit

Permalink
fix(Vulkan): make VK12 extend VK11
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Mar 15, 2021
1 parent 85a610e commit 31a08c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
* limit which indicates the color sample counts that are supported for all framebuffer color attachments with integer formats.</li>
* </ul>
*/
public class VK12 extends VK10 {
public class VK12 extends VK11 {

/**
* Extends {@code VkStructureType}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.lwjgl.generator.*
import vulkan.*

val VK12 = "VK12".nativeClass(Module.VULKAN, "VK12", prefix = "VK", binding = VK_BINDING_INSTANCE) {
extends = VK10
extends = VK11
documentation =
"""
The core Vulkan 1.2 functionality.
Expand Down

0 comments on commit 31a08c7

Please sign in to comment.