Lines Matching defs:device
126 vk::VkDevice device,
136 vk::VkDevice device,
140 , m_device (device)
268 vk::VkDevice device,
301 VK_CHECK(vkd.getMemoryWin32HandlePropertiesKHR(device, externalType, handle.getWin32Handle(), &memoryWin32HandleProperties));
313 vk::Move<vk::VkDeviceMemory> memory (vk::allocateMemory(vkd, device, &info));
321 vk::VkDevice device,
345 vkd.getBufferMemoryRequirements2(device, &requirementsInfo, &requirements);
347 vk::Move<vk::VkDeviceMemory> memory = importMemory(vkd, device, requirements.memoryRequirements, externalType, nativeHandle, !!dedicatedRequirements.requiresDedicatedAllocation, buffer, DE_NULL);
348 VK_CHECK(vkd.bindBufferMemory(device, buffer, *memory, 0u));
350 return de::MovePtr<vk::Allocation>(new SimpleAllocation(vkd, device, memory.disown()));
354 vk::VkDevice device,
378 vkd.getImageMemoryRequirements2(device, &requirementsInfo, &requirements);
380 vk::Move<vk::VkDeviceMemory> memory = importMemory(vkd, device, requirements.memoryRequirements, externalType, nativeHandle, !!dedicatedRequirements.requiresDedicatedAllocation, DE_NULL, image);
381 VK_CHECK(vkd.bindImageMemory(device, image, *memory, 0u));
383 return de::MovePtr<vk::Allocation>(new SimpleAllocation(vkd, device, memory.disown()));
387 vk::VkDevice device,
446 vk::Move<vk::VkImage> image = vk::createImage(vkd, device, &createInfo);
447 de::MovePtr<vk::Allocation> allocation = importAndBindMemory(vkd, device, *image, nativeHandle, externalType);
474 vk::Move<vk::VkBuffer> buffer = vk::createBuffer(vkd, device, &createInfo);
475 de::MovePtr<vk::Allocation> allocation = importAndBindMemory(vkd, device, *buffer, nativeHandle, externalType);
1256 TCU_FAIL("Physical device deviceLUIDValid is not valid");
1332 TCU_FAIL("Failed to created DX11 device");
1426 // Class to wrap a singleton instance and device