Class VkPhysicalDeviceMaintenance4Features

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDeviceMaintenance4Features>
org.lwjgl.vulkan.VkPhysicalDeviceMaintenance4Features
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkPhysicalDeviceMaintenance4FeaturesKHR

public class VkPhysicalDeviceMaintenance4Features extends org.lwjgl.system.Struct<VkPhysicalDeviceMaintenance4Features> implements org.lwjgl.system.NativeResource
Structure describing whether the implementation supports maintenance4 functionality.
Description

If the VkPhysicalDeviceMaintenance4Features structure is included in the pNext chain of the VkPhysicalDeviceFeatures2 structure passed to GetPhysicalDeviceFeatures2, it is filled in to indicate whether each corresponding feature is supported. VkPhysicalDeviceMaintenance4Features can also be used in the pNext chain of VkDeviceCreateInfo to selectively enable these features.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceMaintenance4Features {
     VkStructureType sType();
     void * pNext();
     VkBool32 maintenance4();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • STYPE

      public static final int STYPE
      The struct member offsets.
    • PNEXT

      public static final int PNEXT
      The struct member offsets.
    • MAINTENANCE4

      public static final int MAINTENANCE4
      The struct member offsets.
  • Constructor Details

    • VkPhysicalDeviceMaintenance4Features

      public VkPhysicalDeviceMaintenance4Features(ByteBuffer container)
      Creates a VkPhysicalDeviceMaintenance4Features instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details