Class VkVideoSessionCreateInfoKHR

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

public class VkVideoSessionCreateInfoKHR extends org.lwjgl.system.Struct<VkVideoSessionCreateInfoKHR> implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created video session.
Valid Usage
Valid Usage (Implicit)
See Also

VkExtensionProperties, VkExtent2D, VkVideoProfileInfoKHR, CreateVideoSessionKHR

Layout


 struct VkVideoSessionCreateInfoKHR {
     VkStructureType sType();
     void const * pNext();
     uint32_t queueFamilyIndex();
     VkVideoSessionCreateFlagsKHR flags();
     VkVideoProfileInfoKHR const * pVideoProfile();
     VkFormat pictureFormat();
     VkExtent2D maxCodedExtent();
     VkFormat referencePictureFormat();
     uint32_t maxDpbSlots();
     uint32_t maxActiveReferencePictures();
     VkExtensionProperties const * pStdHeaderVersion();
 }
  • 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.
    • QUEUEFAMILYINDEX

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

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

      public static final int PVIDEOPROFILE
      The struct member offsets.
    • PICTUREFORMAT

      public static final int PICTUREFORMAT
      The struct member offsets.
    • MAXCODEDEXTENT

      public static final int MAXCODEDEXTENT
      The struct member offsets.
    • REFERENCEPICTUREFORMAT

      public static final int REFERENCEPICTUREFORMAT
      The struct member offsets.
    • MAXDPBSLOTS

      public static final int MAXDPBSLOTS
      The struct member offsets.
    • MAXACTIVEREFERENCEPICTURES

      public static final int MAXACTIVEREFERENCEPICTURES
      The struct member offsets.
    • PSTDHEADERVERSION

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

    • VkVideoSessionCreateInfoKHR

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