Home
last modified time | relevance | path

Searched refs:logicalDevice (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/postmortem/
H A DvktPostmortemDeviceLossTests.cpp108 vk::Unique<vk::VkDevice> logicalDevice(createPostmortemDevice(m_context)); in iterate() local
109 …eviceDriver deviceDriver(m_context.getPlatformInterface(), m_context.getInstance(), *logicalDevice, in iterate()
112 vk::VkQueue queue(getDeviceQueue(deviceDriver, *logicalDevice, queueFamilyIndex, 0)); in iterate()
114 deviceDriver, *logicalDevice, in iterate()
129 queryPool = createQueryPool(deviceDriver, *logicalDevice, &queryPoolInfo); in iterate()
135 …new BufferWithMemory(deviceDriver, *logicalDevice, allocator, outBufferInfo, MemoryRequirement::Ho… in iterate()
140 .build(deviceDriver, *logicalDevice); in iterate()
146 … .build(deviceDriver, *logicalDevice, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u); in iterate()
151 auto descriptorSet = allocateDescriptorSet(deviceDriver, *logicalDevice, &allocInfo); in iterate()
157 .update(deviceDriver, *logicalDevice); in iterate()
[all …]
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationBasicSemaphoreTests.cpp563 vk::Move<vk::VkDevice> logicalDevice; in basicMultiQueueCase() local
740 logicalDevice = in basicMultiQueueCase()
751 …new DeviceDriver(context.getPlatformInterface(), instance, *logicalDevice, context.getUsedApiVersi… in basicMultiQueueCase()
759 new DeviceDriverSC(context.getPlatformInterface(), instance, *logicalDevice, in basicMultiQueueCase()
763 vk::DeinitDeviceDeleter(context.getResourceInterface().get(), *logicalDevice)); in basicMultiQueueCase()
770 vk.getDeviceQueue(*logicalDevice, queues[queueReqNdx].queueFamilyIndex, queueReqNdx, in basicMultiQueueCase()
773 …vk.getDeviceQueue(*logicalDevice, queues[queueReqNdx].queueFamilyIndex, 0u, &queues[queueReqNdx].q… in basicMultiQueueCase()
782 semaphore = (createTestSemaphore(context, vk, *logicalDevice, config)); in basicMultiQueueCase()
783 …cmdPool[FIRST] = (createCommandPool(vk, *logicalDevice, VK_COMMAND_POOL_CREATE_RESET_COMMAND_BU… in basicMultiQueueCase()
785 …cmdPool[SECOND] = (createCommandPool(vk, *logicalDevice, VK_COMMAND_POOL_CREATE_RESET_COMMAND_BU… in basicMultiQueueCase()
[all …]
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeBasicComputeShaderTests.cpp3466 vk::Move<vk::VkDevice> logicalDevice; in iterate() local
3584 logicalDevice = in iterate()
3590 …new DeviceDriver(m_context.getPlatformInterface(), instance, *logicalDevice, m_context.getUsedApiV… in iterate()
3595 new DeviceDriverSC(m_context.getPlatformInterface(), instance, *logicalDevice, in iterate()
3599 vk::DeinitDeviceDeleter(m_context.getResourceInterface().get(), *logicalDevice)); in iterate()
3606 vk.getDeviceQueue(*logicalDevice, queues[queueReqNdx].queueFamilyIndex, queueReqNdx, in iterate()
3609 …vk.getDeviceQueue(*logicalDevice, queues[queueReqNdx].queueFamilyIndex, 0u, &queues[queueReqNdx].q… in iterate()
3617 de::MovePtr<SimpleAllocator>(new SimpleAllocator(vk, *logicalDevice, memoryProperties)); in iterate()
3619 const BufferWithMemory buffer1(vk, *logicalDevice, *allocator, in iterate()
3622 const BufferWithMemory buffer2(vk, *logicalDevice, *allocator, in iterate()
[all …]
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiBufferMarkerTests.cpp59 Move<VkDevice> logicalDevice; member
149 …wd.logicalDevice = createCustomDevice(useValidation, vkp, instance, instanceDriver, physicalDevice… in createDeviceWithExtension()
151 …vkp, instance, *wd.logicalDevice, context.getUsedApiVersion(), context.getTestContext().getCommand… in createDeviceWithExtension()
155 new SimpleAllocator(*wd.deviceDriver, *wd.logicalDevice, in createDeviceWithExtension()
158 wd.queue = getDeviceQueue(*wd.deviceDriver, *wd.logicalDevice, wd.queueFamilyIdx, 0u); in createDeviceWithExtension()
295 const VkDevice device(*wd.logicalDevice); in bufferMarkerSequential()
369 const VkDevice device(*wd.logicalDevice); in bufferMarkerOverwrite()
509 const VkDevice device(*wd.logicalDevice); in bufferMarkerMemoryDep()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/multiview/
H A DvktMultiViewRenderTests.cpp275 …ImageAttachment(VkDevice logicalDevice, DeviceInterface &device, Allocator &allocator, const VkExt…
292 ImageAttachment::ImageAttachment(VkDevice logicalDevice, DeviceInterface &device, Allocator &alloca… in ImageAttachment() argument
307 m_image = createImage(device, logicalDevice, &colorAttachmentImageInfo); in ImageAttachment()
309 …allocator.allocate(getImageMemoryRequirements(device, logicalDevice, *m_image), MemoryRequirement:… in ImageAttachment()
310 VK_CHECK(device.bindImageMemory(logicalDevice, *m_image, m_allocationImage->getMemory(), in ImageAttachment()
312 …m_imageView = makeImageView(device, logicalDevice, *m_image, VK_IMAGE_VIEW_TYPE_2D_ARRAY, colorFor… in ImageAttachment()