Class VkPerformanceCounterDescriptionKHR

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

public class VkPerformanceCounterDescriptionKHR extends org.lwjgl.system.Struct<VkPerformanceCounterDescriptionKHR> implements org.lwjgl.system.NativeResource
Structure providing more detailed information about a counter.
Valid Usage (Implicit)
See Also

EnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR

Layout


 struct VkPerformanceCounterDescriptionKHR {
     VkStructureType sType();
     void * pNext();
     VkPerformanceCounterDescriptionFlagsKHR flags();
     char name()[VK_MAX_DESCRIPTION_SIZE];
     char category()[VK_MAX_DESCRIPTION_SIZE];
     char description()[VK_MAX_DESCRIPTION_SIZE];
 }
  • 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.
    • FLAGS

      public static final int FLAGS
      The struct member offsets.
    • NAME

      public static final int NAME
      The struct member offsets.
    • CATEGORY

      public static final int CATEGORY
      The struct member offsets.
    • DESCRIPTION

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

    • VkPerformanceCounterDescriptionKHR

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