Class VkPhysicalDeviceFaultFeaturesEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDeviceFaultFeaturesEXT>
org.lwjgl.vulkan.VkPhysicalDeviceFaultFeaturesEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPhysicalDeviceFaultFeaturesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceFaultFeaturesEXT> implements org.lwjgl.system.NativeResource
Structure indicating support for device fault reporting.
Description

If the VkPhysicalDeviceFaultFeaturesEXT 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. VkPhysicalDeviceFaultFeaturesEXT can also be used in the pNext chain of VkDeviceCreateInfo to selectively enable these features.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceFaultFeaturesEXT {
     VkStructureType sType;
     void * pNext;
     VkBool32 deviceFault();
     VkBool32 deviceFaultVendorBinary();
 }
  • 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.
    • DEVICEFAULT

      public static final int DEVICEFAULT
      The struct member offsets.
    • DEVICEFAULTVENDORBINARY

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

    • VkPhysicalDeviceFaultFeaturesEXT

      public VkPhysicalDeviceFaultFeaturesEXT(ByteBuffer container)
      Creates a VkPhysicalDeviceFaultFeaturesEXT 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