Home
last modified time | relevance | path

Searched refs:memoryPropertyFlags (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DBufferVk.cpp286 VkMemoryPropertyFlags memoryPropertyFlags) in setExternalBufferData() argument
317 ANGLE_TRY(buffer->initExternal(contextVk, memoryPropertyFlags, createInfo, clientBuffer)); in setExternalBufferData()
334 VkMemoryPropertyFlags memoryPropertyFlags = 0; in setDataWithUsageFlags() local
343 memoryPropertyFlags = GetStorageMemoryType(flags, isExternalBuffer); in setDataWithUsageFlags()
350 memoryPropertyFlags = GetPreferredMemoryType(target, usage); in setDataWithUsageFlags()
357 ANGLE_TRY(setExternalBufferData(context, target, clientBuffer, size, memoryPropertyFlags)); in setDataWithUsageFlags()
372 return setDataWithMemoryType(context, target, data, size, memoryPropertyFlags, in setDataWithUsageFlags()
383 VkMemoryPropertyFlags memoryPropertyFlags = GetPreferredMemoryType(target, usage); in setData() local
384 return setDataWithMemoryType(context, target, data, size, memoryPropertyFlags, false, usage); in setData()
391 VkMemoryPropertyFlags memoryPropertyFlags, in setDataWithMemoryType() argument
[all …]
Dvk_utils.cpp500 VkMemoryPropertyFlags memoryPropertyFlags) in InitMappableAllocation() argument
506 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in InitMappableAllocation()
520 VkMemoryPropertyFlags memoryPropertyFlags) in InitMappableDeviceMemory() argument
529 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in InitMappableDeviceMemory()
557 VkMemoryPropertyFlags memoryPropertyFlags, in AllocateImageMemory() argument
564 return AllocateBufferOrImageMemory(context, memoryPropertyFlags, memoryPropertyFlagsOut, in AllocateImageMemory()
569 VkMemoryPropertyFlags memoryPropertyFlags, in AllocateImageMemoryWithRequirements() argument
576 return AllocateAndBindBufferOrImageMemory(context, memoryPropertyFlags, &memoryPropertyFlagsOut, in AllocateImageMemoryWithRequirements()
582 VkMemoryPropertyFlags memoryPropertyFlags, in AllocateBufferMemoryWithRequirements() argument
589 return AllocateAndBindBufferOrImageMemory(context, memoryPropertyFlags, memoryPropertyFlagsOut, in AllocateBufferMemoryWithRequirements()
DBufferVk.h55 VkMemoryPropertyFlags memoryPropertyFlags);
168 VkMemoryPropertyFlags memoryPropertyFlags,
Dvk_utils.h385 VkMemoryPropertyFlags memoryPropertyFlags);
391 VkMemoryPropertyFlags memoryPropertyFlags);
402 VkMemoryPropertyFlags memoryPropertyFlags,
410 VkMemoryPropertyFlags memoryPropertyFlags,
417 VkMemoryPropertyFlags memoryPropertyFlags,
Dvk_helpers.cpp1972 VkMemoryPropertyFlags memoryPropertyFlags = in init() local
1975 initWithFlags(renderer, usage, alignment, initialSize, memoryPropertyFlags, policy); in init()
1982 VkMemoryPropertyFlags memoryPropertyFlags, in initWithFlags() argument
1986 mHostVisible = ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) != 0); in initWithFlags()
1987 mMemoryPropertyFlags = memoryPropertyFlags; in initWithFlags()
3446 VkMemoryMapFlags memoryPropertyFlags, in flush() argument
3453 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT) == 0) in flush()
3470 VkMemoryMapFlags memoryPropertyFlags, in invalidate() argument
3477 if ((memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD) == 0) in invalidate()
3513 VkMemoryPropertyFlags memoryPropertyFlags) in init() argument
[all …]
Dvk_helpers.h823 VkMemoryMapFlags memoryPropertyFlags,
827 VkMemoryMapFlags memoryPropertyFlags,
855 VkMemoryPropertyFlags memoryPropertyFlags);
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryRequirementsTests.cpp382 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local
384 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements()
387 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements()
390 result.check((memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) == 0u, in verifyMemoryRequirements()
777 …const VkMemoryPropertyFlags memoryPropertyFlags = deviceMemoryProperties.memoryTypes[*memoryTypeNd… in verifyMemoryRequirements() local
779 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) in verifyMemoryRequirements()
782 …if (memoryPropertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_… in verifyMemoryRequirements()
785 if (memoryPropertyFlags & VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT) in verifyMemoryRequirements()