HomeSort by relevance Sort by last modified time
    Searched refs:DeviceMemory (Results 1 - 6 of 6) sorted by null

  /external/vulkan-validation-layers/tests/
vktestbinding.h 46 class DeviceMemory;
279 class DeviceMemory : public internal::NonDispHandle<VkDeviceMemory> {
281 ~DeviceMemory();
393 const DeviceMemory &memory() const { return internal_mem_; }
394 DeviceMemory &memory() { return internal_mem_; }
400 void bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset);
421 DeviceMemory internal_mem_;
451 const DeviceMemory &memory() const { return internal_mem_; }
452 DeviceMemory &memory() { return internal_mem_; }
458 void bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset)
    [all...]
vktestbinding.cpp 84 vk_testing::DeviceMemory::alloc_info(reqs.size, 0);
442 DeviceMemory::~DeviceMemory() {
447 void DeviceMemory::init(const Device &dev, const VkMemoryAllocateInfo &info) {
451 const void *DeviceMemory::map(VkFlags flags) const {
460 void *DeviceMemory::map(VkFlags flags) {
469 void DeviceMemory::unmap() const { vkUnmapMemory(device(), handle()); }
532 void Buffer::bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset) {
581 void Image::bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 257 class DeviceMemory
260 DeviceMemory (VkDevice, const VkMemoryAllocateInfo* pAllocInfo)
264 ~DeviceMemory (void)
582 const DeviceMemory* memory = reinterpret_cast<DeviceMemory*>(memHandle.getInternal());
vkNullDriverImpl.inl 19 VK_NULL_RETURN((*pMemory = allocateNonDispHandle<DeviceMemory, VkDeviceMemory>(device, pAllocateInfo, pAllocator)));
191 freeNonDispHandle<DeviceMemory, VkDeviceMemory>(memory, pAllocator);
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 724 // DeviceMemory
726 struct DeviceMemory {
731 DEFINE_OBJECT_HANDLE_CONVERSION(DeviceMemory)
737 if (SIZE_MAX - sizeof(DeviceMemory) <= alloc_info->allocationSize)
742 size_t size = sizeof(DeviceMemory) + size_t(alloc_info->allocationSize);
743 DeviceMemory* mem = static_cast<DeviceMemory*>(allocator->pfnAllocation(
744 allocator->pUserData, size, alignof(DeviceMemory),
758 DeviceMemory* mem = GetDeviceMemoryFromHandle(mem_handle);
768 DeviceMemory* mem = GetDeviceMemoryFromHandle(mem_handle)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 559 struct DeviceMemory
585 return getSafeObjectCount<DeviceMemory>(context,
606 DeviceMemory::Parameters getDeviceMemoryParameters (const VkMemoryRequirements& memReqs)
608 return DeviceMemory::Parameters(memReqs.size, deCtz32(memReqs.memoryTypeBits));
611 DeviceMemory::Parameters getDeviceMemoryParameters (const Environment& env, VkImage image)
616 DeviceMemory::Parameters getDeviceMemoryParameters (const Environment& env, VkBuffer image)
698 Dependency<DeviceMemory> memory;
841 Dependency<DeviceMemory> memory;
    [all...]

Completed in 158 milliseconds