Class VkPhysicalDeviceDrmPropertiesEXT

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

public class VkPhysicalDeviceDrmPropertiesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceDrmPropertiesEXT> implements org.lwjgl.system.NativeResource
Structure containing DRM information of a physical device.
Description

If the VkPhysicalDeviceDrmPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

These are properties of the DRM information of a physical device.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceDrmPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     VkBool32 hasPrimary();
     VkBool32 hasRender();
     int64_t primaryMajor();
     int64_t primaryMinor();
     int64_t renderMajor();
     int64_t renderMinor();
 }
  • 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.
    • HASPRIMARY

      public static final int HASPRIMARY
      The struct member offsets.
    • HASRENDER

      public static final int HASRENDER
      The struct member offsets.
    • PRIMARYMAJOR

      public static final int PRIMARYMAJOR
      The struct member offsets.
    • PRIMARYMINOR

      public static final int PRIMARYMINOR
      The struct member offsets.
    • RENDERMAJOR

      public static final int RENDERMAJOR
      The struct member offsets.
    • RENDERMINOR

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

    • VkPhysicalDeviceDrmPropertiesEXT

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