C Specification

The VkDeviceBufferMemoryRequirementsKHR structure is defined as:

// Provided by VK_KHR_maintenance4
typedef struct VkDeviceBufferMemoryRequirementsKHR {
    VkStructureType              sType;
    const void*                  pNext;
    const VkBufferCreateInfo*    pCreateInfo;
} VkDeviceBufferMemoryRequirementsKHR;

Members

  • sType is the type of this structure.

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

  • pCreateInfo is a pointer to a VkBufferCreateInfo structure containing parameters affecting creation of the buffer to query.

Description

Valid Usage (Implicit)
  • VUID-VkDeviceBufferMemoryRequirementsKHR-sType-sType
    sType must be VK_STRUCTURE_TYPE_DEVICE_BUFFER_MEMORY_REQUIREMENTS_KHR

  • VUID-VkDeviceBufferMemoryRequirementsKHR-pNext-pNext
    pNext must be NULL

  • VUID-VkDeviceBufferMemoryRequirementsKHR-pCreateInfo-parameter
    pCreateInfo must be a valid pointer to a valid VkBufferCreateInfo structure

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

SPDX-License-Identifier: CC-BY-4.0