Class VkPhysicalDeviceProperties

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPhysicalDeviceProperties extends Struct<VkPhysicalDeviceProperties> implements NativeResource

 struct VkPhysicalDeviceProperties {
     uint32_t apiVersion;
     uint32_t driverVersion;
     uint32_t vendorID;
     uint32_t deviceID;
     VkPhysicalDeviceType deviceType;
     char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
     uint8_t pipelineCacheUUID[VK_UUID_SIZE];
     VkPhysicalDeviceLimits limits;
     VkPhysicalDeviceSparseProperties sparseProperties;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int APIVERSION
      The struct member offsets.
    • DRIVERVERSION

      public static final int DRIVERVERSION
      The struct member offsets.
    • VENDORID

      public static final int VENDORID
      The struct member offsets.
    • DEVICEID

      public static final int DEVICEID
      The struct member offsets.
    • DEVICETYPE

      public static final int DEVICETYPE
      The struct member offsets.
    • DEVICENAME

      public static final int DEVICENAME
      The struct member offsets.
    • PIPELINECACHEUUID

      public static final int PIPELINECACHEUUID
      The struct member offsets.
    • LIMITS

      public static final int LIMITS
      The struct member offsets.
    • SPARSEPROPERTIES

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

    • VkPhysicalDeviceProperties

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