Home
last modified time | relevance | path

Searched refs:VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT (Results 1 - 25 of 25) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp80 case VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT: in memoryPropertyFlagBitToString()
81 return "VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT"; in memoryPropertyFlagBitToString()
368 , m_memReq (flags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT in TransientAttachmentTestInstance()
581 { "color_load_store_op_test_lazy_bit", TestMode::MODE_COLOR , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
582 { "depth_load_store_op_test_lazy_bit", TestMode::MODE_DEPTH , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
583 { "stencil_load_store_op_test_lazy_bit", TestMode::MODE_STENCIL , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp80 case VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT: in memoryPropertyFlagBitToString()
81 return "VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT"; in memoryPropertyFlagBitToString()
368 , m_memReq (flags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT in TransientAttachmentTestInstance()
580 { "color_load_store_op_test_lazy_bit", TestMode::MODE_COLOR , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
581 { "depth_load_store_op_test_lazy_bit", TestMode::MODE_DEPTH , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
582 { "stencil_load_store_op_test_lazy_bit", TestMode::MODE_STENCIL , VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT}, in createTransientAttachmentTests()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_bo.h35 #define VK_LAZY_VRAM (VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT | VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT)
145 domains = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT | VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT; in vk_domain_from_heap()
H A Dzink_resource.c909 flags |= VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in resource_object_create()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiGetMemoryCommitment.cpp111 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in iterate()
384 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in iterate()
470 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in isDeviceMemoryCommitmentOk()
H A DvktApiFeatureInfo.cpp2997 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT|VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT in deviceMemoryProperties()
3018 const VkMemoryPropertyFlags bitsToCheck = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT|VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT|VK_MEMORY_PROPERTY_HOST_COHERENT_BIT|VK_MEMORY_PROPERTY_HOST_CACHED_BIT|VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in deviceMemoryProperties()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiGetMemoryCommitment.cpp112 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in iterate()
386 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in iterate()
472 const VkMemoryPropertyFlags propertyFlag = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in isDeviceMemoryCommitmentOk()
H A DvktApiFeatureInfo.cpp3022 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT|VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT in deviceMemoryProperties()
3043 const VkMemoryPropertyFlags bitsToCheck = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT|VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT|VK_MEMORY_PROPERTY_HOST_COHERENT_BIT|VK_MEMORY_PROPERTY_HOST_CACHED_BIT|VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in deviceMemoryProperties()
/third_party/skia/src/gpu/vk/
H A DGrVkAMDMemoryAllocator.cpp210 info.requiredFlags |= VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in allocateImageMemory()
311 info.preferredFlags |= VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT; in allocateBufferMemory()
350 if (VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT & memFlags) { in getAllocInfo()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp486 result.check((memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) == 0u, in verifyMemoryRequirements()
487 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT"); in verifyMemoryRequirements()
977 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in verifyMemoryRequirements()
980 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in verifyMemoryRequirements()
2152 if (propertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in testMultiplaneImages()
2155 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in testMultiplaneImages()
2245 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT | VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT, in testVkMemoryPropertyFlags()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp487 result.check((memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) == 0u, in verifyMemoryRequirements()
488 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT"); in verifyMemoryRequirements()
987 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in verifyMemoryRequirements()
990 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in verifyMemoryRequirements()
2038 if (propertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in testMultiplaneImages()
2041 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in testMultiplaneImages()
2123 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT | VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT, in testVkMemoryPropertyFlags()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkMemUtil.cpp139 if ((m_flags & FLAG_LAZY_ALLOCATION) && !(heapFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT))
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_utils.cpp413 if ((memoryType.propertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) != 0) in hasLazilyAllocatedMemory()
H A Dvk_helpers.cpp4906 // VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT. TRANSIENT is provided if there is any memory that in initImplicitMultisampledRenderToTexture()
4933 (hasLazilyAllocatedMemory ? VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT : 0) | in initImplicitMultisampledRenderToTexture()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DlibVulkan.cpp1277 ASSERT(memoryProperties.memoryTypes[typeIndex].propertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT); in vkGetDeviceMemoryCommitment()
/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h2620 /** Lazily allocated GPU memory having `VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT`.
18041 if((flags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) != 0)
18156 requiredFlags |= VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT;
/third_party/glfw/deps/glad/
H A Dvulkan.h999 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 16, enumerator
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_enums.hpp2005 eLazilyAllocated = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT,
H A Dvulkan_core.h2352 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator
/third_party/vk-gl-cts/external/vulkancts/scripts/src/
H A Dvulkan_sc_core.h1297 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator
/third_party/skia/include/third_party/vulkan/vulkan/
H A Dvulkan_core.h1918 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator
/third_party/mesa3d/include/vulkan/
H A Dvulkan_core.h2231 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_core.h2004 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator
H A Dvulkan_enums.hpp2804 eLazilyAllocated = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT,
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
H A Dvulkan_core.h2035 VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, enumerator

Completed in 534 milliseconds