Class VkDeviceQueueGlobalPriorityCreateInfoEXT

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkDeviceQueueGlobalPriorityCreateInfoEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Specify a system wide priority.
    Description

    A queue created without specifying VkDeviceQueueGlobalPriorityCreateInfoEXT will default to QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • globalPriority – the system-wide priority associated to this queue as specified by VkQueueGlobalPriorityEXT

    Layout

    
     struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
         VkStructureType sType;
         void const * pNext;
         VkQueueGlobalPriorityEXT globalPriority;
     }