C Specification

The VkScreenSurfaceCreateInfoQNX structure is defined as:

// Provided by VK_QNX_screen_surface
typedef struct VkScreenSurfaceCreateInfoQNX {
    VkStructureType                  sType;
    const void*                      pNext;
    VkScreenSurfaceCreateFlagsQNX    flags;
    struct _screen_context*          context;
    struct _screen_window*           window;
} VkScreenSurfaceCreateInfoQNX;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • flags is reserved for future use.

  • context and window are QNX Screen context and window to associate the surface with.

Description

Valid Usage
  • VUID-VkScreenSurfaceCreateInfoQNX-context-04741
    context must point to a valid QNX Screen struct _screen_context

  • VUID-VkScreenSurfaceCreateInfoQNX-window-04742
    window must point to a valid QNX Screen struct _screen_window

Valid Usage (Implicit)
  • VUID-VkScreenSurfaceCreateInfoQNX-sType-sType
    sType must be VK_STRUCTURE_TYPE_SCREEN_SURFACE_CREATE_INFO_QNX

  • VUID-VkScreenSurfaceCreateInfoQNX-pNext-pNext
    pNext must be NULL

  • VUID-VkScreenSurfaceCreateInfoQNX-flags-zerobitmask
    flags must be 0

See Also

Document Notes

For more information, see the Vulkan Specification

This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.

Copyright 2014-2024 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0