C Specification

The VkMemoryGetSciBufInfoNV structure is defined as:

// Provided by VK_NV_external_memory_sci_buf
typedef struct VkMemoryGetSciBufInfoNV {
    VkStructureType                       sType;
    const void*                           pNext;
    VkDeviceMemory                        memory;
    VkExternalMemoryHandleTypeFlagBits    handleType;
} VkMemoryGetSciBufInfoNV;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • memory is the memory object from which the handle will be exported.

  • handleType is the type of handle requested.

Description

Valid Usage
  • VUID-VkMemoryGetSciBufInfoNV-handleType-05103
    handleType must be VK_EXTERNAL_MEMORY_HANDLE_TYPE_SCI_BUF_BIT_NV

Valid Usage (Implicit)
  • VUID-VkMemoryGetSciBufInfoNV-sType-sType
    sType must be VK_STRUCTURE_TYPE_MEMORY_GET_SCI_BUF_INFO_NV

  • VUID-VkMemoryGetSciBufInfoNV-pNext-pNext
    pNext must be NULL

  • VUID-VkMemoryGetSciBufInfoNV-memory-parameter
    memory must be a valid VkDeviceMemory handle

  • VUID-VkMemoryGetSciBufInfoNV-handleType-parameter
    handleType must be a valid VkExternalMemoryHandleTypeFlagBits value

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-2023 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0