/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_utils.cpp | 528 VkMemoryMapFlags memoryPropertyFlags, in flush() argument 535 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in flush() 552 VkMemoryMapFlags memoryPropertyFlags, in invalidate() argument 559 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD) == 0) in invalidate() 662 VkMemoryPropertyFlags memoryPropertyFlags) in InitMappableAllocation() argument 668 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in InitMappableAllocation() 682 VkMemoryPropertyFlags memoryPropertyFlags) in InitMappableDeviceMemory() argument 691 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in InitMappableDeviceMemory() 719 VkMemoryPropertyFlags memoryPropertyFlags, in AllocateImageMemory() argument 726 return AllocateBufferOrImageMemory(context, memoryPropertyFlags, memoryPropertyFlagsOut, in AllocateImageMemory() [all …]
|
D | BufferVk.cpp | 307 VkMemoryPropertyFlags memoryPropertyFlags) in setExternalBufferData() argument 338 ANGLE_TRY(buffer->initExternal(contextVk, memoryPropertyFlags, createInfo, clientBuffer)); in setExternalBufferData() 355 VkMemoryPropertyFlags memoryPropertyFlags = 0; in setDataWithUsageFlags() local 364 memoryPropertyFlags = GetStorageMemoryType(flags, isExternalBuffer); in setDataWithUsageFlags() 371 memoryPropertyFlags = GetPreferredMemoryType(target, usage); in setDataWithUsageFlags() 378 ANGLE_TRY(setExternalBufferData(context, target, clientBuffer, size, memoryPropertyFlags)); in setDataWithUsageFlags() 393 return setDataWithMemoryType(context, target, data, size, memoryPropertyFlags, in setDataWithUsageFlags() 404 VkMemoryPropertyFlags memoryPropertyFlags = GetPreferredMemoryType(target, usage); in setData() local 405 return setDataWithMemoryType(context, target, data, size, memoryPropertyFlags, false, usage); in setData() 412 VkMemoryPropertyFlags memoryPropertyFlags, in setDataWithMemoryType() argument [all …]
|
D | vk_utils.h | 397 VkMemoryMapFlags memoryPropertyFlags, 401 VkMemoryMapFlags memoryPropertyFlags, 447 VkMemoryPropertyFlags memoryPropertyFlags); 453 VkMemoryPropertyFlags memoryPropertyFlags); 464 VkMemoryPropertyFlags memoryPropertyFlags, 473 VkMemoryPropertyFlags memoryPropertyFlags, 481 VkMemoryPropertyFlags memoryPropertyFlags,
|
D | BufferVk.h | 61 VkMemoryPropertyFlags memoryPropertyFlags); 188 VkMemoryPropertyFlags memoryPropertyFlags,
|
D | vk_helpers.cpp | 2196 VkMemoryPropertyFlags memoryPropertyFlags = in init() local 2199 initWithFlags(renderer, usage, alignment, initialSize, memoryPropertyFlags, policy); in init() 2206 VkMemoryPropertyFlags memoryPropertyFlags, in initWithFlags() argument 2210 mHostVisible = ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) != 0); in initWithFlags() 2211 mMemoryPropertyFlags = memoryPropertyFlags; in initWithFlags() 3658 VkMemoryPropertyFlags memoryPropertyFlags) in init() argument 3678 (memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT); in init() 3680 (memoryPropertyFlags & (~VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT)); in init() 4876 VkMemoryPropertyFlags memoryPropertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT; in initStaging() local 4879 memoryPropertyFlags |= VK_MEMORY_PROPERTY_PROTECTED_BIT; in initStaging() [all …]
|
D | vk_helpers.h | 852 VkMemoryPropertyFlags memoryPropertyFlags);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryRequirementsTests.cpp | 479 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local 481 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements() 484 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements() 487 result.check((memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) == 0u, in verifyMemoryRequirements() 979 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local 981 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements() 984 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements() 987 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in verifyMemoryRequirements()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
D | vktMemoryRequirementsTests.cpp | 479 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local 481 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements() 484 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements() 487 result.check((memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) == 0u, in verifyMemoryRequirements() 979 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local 981 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements() 984 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements() 987 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in verifyMemoryRequirements()
|