Home
last modified time | relevance | path

Searched refs:memoryAllocateInfo (Results 1 – 8 of 8) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_NV_win32_keyed_mutex.adoc54 VkMemoryAllocateInfo memoryAllocateInfo;
130 memset(&memoryAllocateInfo, 0, sizeof(memoryAllocateInfo));
131 memoryAllocateInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
132 memoryAllocateInfo.pNext = &exportMemoryAllocateInfo;
133 memoryAllocateInfo.allocationSize = imageMemoryRequirements.size;
134 memoryAllocateInfo.memoryTypeIndex = memoryType;
136 vkAllocateMemory(device, &memoryAllocateInfo, NULL, &mem);
DVK_NV_external_memory_win32.adoc102 VkMemoryAllocateInfo memoryAllocateInfo;
194 memset(&memoryAllocateInfo, 0, sizeof(memoryAllocateInfo));
195 memoryAllocateInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
196 memoryAllocateInfo.pNext = &exportMemoryAllocateInfo;
197 memoryAllocateInfo.allocationSize = imageMemoryRequirements.size;
198 memoryAllocateInfo.memoryTypeIndex = memoryType;
200 vkAllocateMemory(device, &memoryAllocateInfo, NULL, &memory);
DVK_NV_dedicated_allocation.adoc81 VkMemoryAllocateInfo memoryAllocateInfo =
92 &memoryAllocateInfo,
DVK_KHR_dedicated_allocation.adoc107 VkMemoryAllocateInfo memoryAllocateInfo =
118 &memoryAllocateInfo,
/hardware/google/gfxstream/common/detector/
DGraphicsDetectorVkExternalMemoryHost.cpp179 const vkhpp::MemoryAllocateInfo memoryAllocateInfo = { in CheckImportingSharedMemory() local
185 auto memory = VK_EXPECT_RV_OR_STRING(device->allocateMemoryUnique(memoryAllocateInfo)); in CheckImportingSharedMemory()
/hardware/google/gfxstream/common/end2end/
DGfxstreamEnd2EndVkTests.cpp407 const vkhpp::MemoryAllocateInfo memoryAllocateInfo = { in TEST_P() local
411 auto memory = device->allocateMemoryUnique(memoryAllocateInfo).value; in TEST_P()
740 const vkhpp::MemoryAllocateInfo memoryAllocateInfo = { in TEST_P() local
744 auto memory = device->allocateMemoryUnique(memoryAllocateInfo).value; in TEST_P()
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_hash.hpp3431 …std::size_t operator()(VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & memoryAllocateInfo) const … in operator ()()
3434 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.sType ); in operator ()()
3435 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.pNext ); in operator ()()
3436 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.allocationSize ); in operator ()()
3437 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.memoryTypeIndex ); in operator ()()
Dvulkan_hash.hpp5991 …std::size_t operator()(VULKAN_HPP_NAMESPACE::MemoryAllocateInfo const & memoryAllocateInfo) const … in operator ()()
5994 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.sType ); in operator ()()
5995 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.pNext ); in operator ()()
5996 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.allocationSize ); in operator ()()
5997 VULKAN_HPP_HASH_COMBINE( seed, memoryAllocateInfo.memoryTypeIndex ); in operator ()()