Searched defs:vkDevice (Results 1 - 25 of 32) sorted by relevance

12

/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiBufferViewCreateTests.cpp96 const VkDevice vkDevice = m_context.getDevice(); local
121 testBuffer = createBuffer(vk, vkDevice, &bufferParams, (const VkAllocationCallbacks*)DE_NULL);
128 vk.getBufferMemoryRequirements(vkDevice, *testBuffer, &memReqs);
162 memory = allocateMemory(vk, vkDevice, &memAlloc, (const VkAllocationCallbacks*)DE_NULL);
169 if (vk.bindBufferMemory(vkDevice, *testBuffer, *memory, 0) != VK_SUCCESS)
174 bufferView = createBufferView(vk, vkDevice, &bufferViewCreateInfo, (const VkAllocationCallbacks*)DE_NULL);
198 completeBufferView = createBufferView(vk, vkDevice, &completeBufferViewCreateInfo, (const VkAllocationCallbacks*)DE_NULL);
H A DvktApiFillBufferTests.cpp96 const VkDevice vkDevice = context.getDevice(); local
110 m_cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams);
124 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, &cmdBufferAllocateInfo);
136 m_fence = createFence(vk, vkDevice, &fenceParams);
153 m_destination = createBuffer(vk, vkDevice, &destinationBufferParams);
154 m_destinationBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_destination), MemoryRequirement::HostVisible);
155 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_destination, m_destinationBufferAlloc->getMemory(), m_destinationBufferAlloc->getOffset()));
171 const VkDevice vkDevice = m_context.getDevice(); local
213 VK_CHECK(vk.resetFences(vkDevice, 1, &m_fence.get()));
215 VK_CHECK(vk.waitForFences(vkDevice,
240 const VkDevice vkDevice = m_context.getDevice(); local
322 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktApiSmokeTests.cpp64 const VkDevice vkDevice = context.getDevice(); local
90 Move<VkSampler> tmpSampler = createSampler(vk, vkDevice, &samplerInfo);
111 const VkDevice vkDevice = context.getDevice(); local
113 const Unique<VkShaderModule> shader (createShaderModule(vk, vkDevice, context.getBinaryCollection().get("test"), 0));
332 const VkDevice vkDevice = context.getDevice(); local
336 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
359 const Unique<VkBuffer> vertexBuffer (createBuffer(vk, vkDevice, &vertexBufferParams));
360 const UniquePtr<Allocation> vertexBufferMemory (memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible));
362 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferMemory->getMemory(), vertexBufferMemory->getOffset()));
376 const Unique<VkBuffer> readImageBuffer (createBuffer(vk, vkDevice,
944 const VkDevice vkDevice = context.getDevice(); local
[all...]
H A DvktApiBufferTests.cpp213 const VkDevice vkDevice = getDevice(); local
240 buffer = createBuffer(vk, vkDevice, &bufferParams);
241 vk.getBufferMemoryRequirements(vkDevice, *buffer, &memReqs);
260 result = vk.createBuffer(vkDevice, &bufferParams, (VkAllocationCallbacks*)DE_NULL, &rawBuffer);
272 buffer = Move<VkBuffer>(check<VkBuffer>(rawBuffer), Deleter<VkBuffer>(vk, vkDevice, DE_NULL));
275 vk.getBufferMemoryRequirements(vkDevice, *buffer, &memReqs); // get the proper size requirement
297 result = vk.allocateMemory(vkDevice, &memAlloc, (VkAllocationCallbacks*)DE_NULL, &rawMemory);
309 memory = Move<VkDeviceMemory>(check<VkDeviceMemory>(rawMemory), Deleter<VkDeviceMemory>(vk, vkDevice, DE_NULL));
319 vk.getDeviceQueue(vkDevice, queueFamilyIndex, 0, &queue);
360 const vk::Unique<vk::VkFence> fence(vk::createFence(vk, vkDevice,
[all...]
H A DvktApiBufferViewAccessTests.cpp149 const VkDevice vkDevice = context.getDevice(); local
151 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
175 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
178 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
179 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
196 m_resultBuffer = createBuffer(vk, vkDevice, &bufferParams);
197 m_resultBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_resultBuffer), MemoryRequirement::HostVisible);
199 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_resultBuffer, m_resultBufferAlloc->getMemory(), m_resultBufferAlloc->getOffset()));
216 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
267 m_renderPass = createRenderPass(vk, vkDevice,
779 const VkDevice vkDevice = m_context.getDevice(); local
806 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktApiCommandBuffersTests.cpp502 const VkDevice vkDevice = context.getDevice(); local
514 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL);
521 const VkDevice vkDevice = context.getDevice(); local
534 createCommandPool(vk, vkDevice, &cmdPoolParams, allocationCallbacks);
541 const VkDevice vkDevice = context.getDevice(); local
553 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL);
560 const VkDevice vkDevice = context.getDevice(); local
572 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL);
579 const VkDevice vkDevice = context.getDevice(); local
591 const Unique<VkCommandPool> cmdPool (createCommandPool(vk, vkDevice,
600 const VkDevice vkDevice = context.getDevice(); local
682 const VkDevice vkDevice = context.getDevice(); local
733 const VkDevice vkDevice = context.getDevice(); local
763 const VkDevice vkDevice = context.getDevice(); local
807 const VkDevice vkDevice = context.getDevice(); local
837 const VkDevice vkDevice = context.getDevice(); local
881 const VkDevice vkDevice = context.getDevice(); local
977 const VkDevice vkDevice = context.getDevice(); local
1083 const VkDevice vkDevice = context.getDevice(); local
1200 const VkDevice vkDevice = context.getDevice(); local
1238 createCommadBuffers(const DeviceInterface& vk, const VkDevice vkDevice, deUint32 bufferCount, VkCommandPool pool, const VkCommandBufferLevel cmdBufferLevel, VkCommandBuffer* pCommandBuffers) argument
1291 const VkDevice vkDevice = context.getDevice(); local
1317 const VkDevice vkDevice = context.getDevice(); local
1406 const VkDevice vkDevice = context.getDevice(); local
1463 const VkDevice vkDevice = context.getDevice(); local
1564 const VkDevice vkDevice = context.getDevice(); local
1632 const VkDevice vkDevice = context.getDevice(); local
1735 const VkDevice vkDevice = context.getDevice(); local
1845 const VkDevice vkDevice = context.getDevice(); local
2024 const VkDevice vkDevice = context.getDevice(); local
2146 const VkDevice vkDevice = context.getDevice(); local
2391 const VkDevice vkDevice = context.getDevice(); local
2505 const VkDevice vkDevice = context.getDevice(); local
2655 const VkDevice vkDevice = context.getDevice(); local
2829 const VkDevice vkDevice = context.getDevice(); local
3014 const VkDevice vkDevice = context.getDevice(); local
3109 const VkDevice vkDevice = context.getDevice(); local
3205 const VkDevice vkDevice = context.getDevice(); local
3302 const VkDevice vkDevice = context.getDevice(); local
3408 const VkDevice vkDevice = context.getDevice(); local
3529 const VkDevice vkDevice = context.getDevice(); local
3689 const VkDevice vkDevice = context.getDevice(); local
3854 const VkDevice vkDevice = context.getDevice(); local
3976 const VkDevice vkDevice = context.getDevice(); local
4111 const VkDevice vkDevice = context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeTestsUtil.cpp176 const VkDevice vkDevice,
192 return createBufferView(vk, vkDevice, &bufferViewParams);
196 const VkDevice vkDevice,
213 return createImageView(vk, vkDevice, &imageViewParams);
175 makeBufferView(const DeviceInterface& vk, const VkDevice vkDevice, const VkBuffer buffer, const VkFormat format, const VkDeviceSize offset, const VkDeviceSize size) argument
195 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType imageViewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsMakeUtil.cpp202 const VkDevice vkDevice,
219 return createImageView(vk, vkDevice, &imageViewParams);
201 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType viewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMakeUtil.cpp223 const VkDevice vkDevice,
240 return createImageView(vk, vkDevice, &imageViewParams);
222 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType viewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
H A DvktPipelineTimestampTests.cpp339 const VkDevice vkDevice = m_context.getDevice();
354 m_shaderModules[m_shaderStageCount] = createShaderModule(vk, vkDevice, &moduleCreateInfo);
371 const VkDevice vkDevice = m_context.getDevice();
386 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
585 return createGraphicsPipeline(vk, vkDevice, DE_NULL, &graphicsPipelineParams);
677 const VkDevice vkDevice = context.getDevice(); local
702 m_queryPool = createQueryPool(vk, vkDevice, &queryPoolParams);
715 m_cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams);
729 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, &cmdAllocateParams);
741 m_fence = createFence(vk, vkDevice,
[all...]
H A DvktPipelineBlendTests.cpp303 const VkDevice vkDevice = m_context.getDevice(); local
305 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(m_context.getInstanceInterface(), m_context.getPhysicalDevice()));
335 m_colorImage = createImage(vk, vkDevice, &m_colorImageCreateInfo);
338 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
339 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
356 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
407 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
425 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
441 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
444 m_vertexShaderModule = createShaderModule(vk, vkDevice, m_contex
797 const VkDevice vkDevice = m_context.getDevice(); local
948 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineDepthTests.cpp231 const VkDevice vkDevice = context.getDevice(); local
233 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
260 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
263 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
264 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
292 m_depthImage = createImage(vk, vkDevice, &depthImageParams);
295 m_depthImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_depthImage), MemoryRequirement::Any);
296 VK_CHECK(vk.bindImageMemory(vkDevice, *m_depthImage, m_depthImageAlloc->getMemory(), m_depthImageAlloc->getOffset()));
317 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
334 m_depthAttachmentView = createImageView(vk, vkDevice,
820 const VkDevice vkDevice = m_context.getDevice(); local
871 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineImageSamplingInstance.cpp154 const VkDevice vkDevice = context.getDevice(); local
157 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
247 m_images[imgNdx] = SharedImagePtr(new UniqueImage(createImage(vk, vkDevice, &imageParams)));
248 m_imageAllocs[imgNdx] = SharedAllocPtr(new UniqueAlloc(memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, **m_images[imgNdx]), MemoryRequirement::Any)));
249 VK_CHECK(vk.bindImageMemory(vkDevice, **m_images[imgNdx], (*m_imageAllocs[imgNdx])->getMemory(), (*m_imageAllocs[imgNdx])->getOffset()));
252 uploadTestTexture(vk, vkDevice, queue, queueFamilyIndex, memAlloc, *m_texture, **m_images[imgNdx]);
267 m_imageViews[imgNdx] = SharedImageViewPtr(new UniqueImageView(createImageView(vk, vkDevice, &imageViewParams)));
270 m_sampler = createSampler(vk, vkDevice, &m_samplerParams);
279 m_descriptorPool = descriptorPoolBuilder.build(vk, vkDevice, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT,
286 m_descriptorSetLayout = setLayoutBuilder.build(vk, vkDevice);
805 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineInputAssemblyTests.cpp923 const VkDevice vkDevice = context.getDevice(); local
925 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
969 m_colorImage = createImage(vk, vkDevice, &m_colorImageCreateInfo);
972 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
973 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
990 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
1041 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
1059 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
1075 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
1078 m_vertexShaderModule = createShaderModule(vk, vkDevice, m_contex
1456 const VkDevice vkDevice = m_context.getDevice(); local
1533 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineStencilTests.cpp320 const VkDevice vkDevice = context.getDevice(); local
322 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
347 m_colorImage = createImage(vk, vkDevice, &m_colorImageCreateInfo);
350 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
351 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
379 m_stencilImage = createImage(vk, vkDevice, &stencilImageParams);
382 m_stencilImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_stencilImage), MemoryRequirement::Any);
383 VK_CHECK(vk.bindImageMemory(vkDevice, *m_stencilImage, m_stencilImageAlloc->getMemory(), m_stencilImageAlloc->getOffset()));
404 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
421 m_stencilAttachmentView = createImageView(vk, vkDevice,
908 const VkDevice vkDevice = m_context.getDevice(); local
992 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineCacheTests.cpp190 const VkDevice vkDevice = m_context.getDevice(); local
205 m_shaderModules[m_shaderStageCount] = createShaderModule(vk, vkDevice, &moduleCreateInfo);
222 const VkDevice vkDevice = m_context.getDevice(); local
419 return createGraphicsPipeline(vk, vkDevice, cache, &graphicsPipelineParams);
440 const VkDevice vkDevice = context.getDevice(); local
455 Move<VkBuffer> vertexBuffer = createBuffer(vk, vkDevice, &vertexBufferParams);
457 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible);
458 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset()));
472 const VkDevice vkDevice = context.getDevice(); local
494 Move<VkImage> image = createImage(vk, vkDevice,
549 const VkDevice vkDevice = m_context.getDevice(); local
613 const VkDevice vkDevice = m_context.getDevice(); local
808 const VkDevice vkDevice = m_context.getDevice(); local
1161 const VkDevice vkDevice = m_context.getDevice(); local
1268 const VkDevice vkDevice = m_context.getDevice(); local
1297 const VkDevice vkDevice = m_context.getDevice(); local
1342 const VkDevice vkDevice = m_context.getDevice(); local
1359 const VkDevice vkDevice = m_context.getDevice(); local
1448 const VkDevice vkDevice = m_context.getDevice(); local
1509 const VkDevice vkDevice = m_context.getDevice(); local
1573 const VkDevice vkDevice = m_context.getDevice(); local
1644 const VkDevice vkDevice = m_context.getDevice(); local
1733 const VkDevice vkDevice = m_context.getDevice(); local
1806 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineMultisampleTests.cpp1462 const VkDevice vkDevice = context.getDevice(); local
1464 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
1488 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
1491 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
1492 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
1517 m_resolveImage = createImage(vk, vkDevice, &resolveImageParams);
1520 m_resolveImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_resolveImage), MemoryRequirement::Any);
1521 VK_CHECK(vk.bindImageMemory(vkDevice, *m_resolveImage, m_resolveImageAlloc->getMemory(), m_resolveImageAlloc->getOffset()));
1546 m_depthStencilImage = createImage(vk, vkDevice, &depthStencilImageParams);
1549 m_depthStencilImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_depthStencilImag
2104 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelinePushConstantTests.cpp605 const VkDevice vkDevice = context.getDevice(); local
607 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
634 m_colorImage = createImage(vk, vkDevice, &m_colorImageCreateInfo);
637 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
638 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
655 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
717 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
740 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
755 m_descriptorSetLayout = DescriptorSetLayoutBuilder().addSingleBinding(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, VK_SHADER_STAGE_VERTEX_BIT).build(vk, vkDevice);
758 m_descriptorPool = DescriptorPoolBuilder().addType(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 1u).build(vk, vkDevice, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BI
1237 const VkDevice vkDevice = m_context.getDevice(); local
1313 const VkDevice vkDevice = m_context.getDevice(); local
1423 const VkDevice vkDevice = context.getDevice(); local
1587 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
H A DvktPipelineVertexInputTests.cpp693 const VkDevice vkDevice = context.getDevice(); local
695 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
719 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
722 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
723 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
740 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
791 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
809 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
825 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
828 m_vertexShaderModule = createShaderModule(vk, vkDevice, m_contex
1173 const VkDevice vkDevice = m_context.getDevice(); local
1361 const VkDevice vkDevice = m_context.getDevice(); local
1436 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageTestsUtil.cpp296 const VkDevice vkDevice,
312 return createBufferView(vk, vkDevice, &bufferViewParams);
316 const VkDevice vkDevice,
333 return createImageView(vk, vkDevice, &imageViewParams);
295 makeBufferView(const DeviceInterface& vk, const VkDevice vkDevice, const VkBuffer buffer, const VkFormat format, const VkDeviceSize offset, const VkDeviceSize size) argument
315 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType imageViewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.cpp494 const VkDevice vkDevice,
511 return createImageView(vk, vkDevice, &imageViewParams);
493 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType viewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
/external/deqp/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationTests.cpp213 const VkDevice vkDevice = m_context.getDevice(); local
229 m_commandPool = createCommandPool(vkd, vkDevice, &cmdPoolCreateInfo, DE_NULL);
272 m_image = vk::createImage(vkd, vkDevice, &imageCreateInfo, DE_NULL);
274 m_imageMemory = allocator.allocate(getImageMemoryRequirements(vkd, vkDevice, *m_image), MemoryRequirement::Any);
275 VK_CHECK(vkd.bindImageMemory(vkDevice, *m_image, m_imageMemory->getMemory(), m_imageMemory->getOffset()));
298 m_imageView = vk::createImageView(vkd, vkDevice, &imageViewCreateInfo, DE_NULL);
338 m_resolvedImage = vk::createImage(vkd, vkDevice, &imageCreateInfo, DE_NULL);
339 m_resolvedImageMemory = allocator.allocate(getImageMemoryRequirements(vkd, vkDevice, *m_resolvedImage), MemoryRequirement::Any);
340 VK_CHECK(vkd.bindImageMemory(vkDevice, *m_resolvedImage, m_resolvedImageMemory->getMemory(), m_resolvedImageMemory->getOffset()));
363 m_resolvedImageView = vk::createImageView(vkd, vkDevice,
631 const VkDevice vkDevice = m_context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.cpp324 const VkDevice vkDevice,
340 return createBufferView(vk, vkDevice, &bufferViewParams);
344 const VkDevice vkDevice,
361 return createImageView(vk, vkDevice, &imageViewParams);
323 makeBufferView(const DeviceInterface& vk, const VkDevice vkDevice, const VkBuffer buffer, const VkFormat format, const VkDeviceSize offset, const VkDeviceSize size) argument
343 makeImageView(const DeviceInterface& vk, const VkDevice vkDevice, const VkImage image, const VkImageViewType imageViewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktBasicDrawTests.cpp751 const vk::VkDevice vkDevice = m_context.getDevice(); local
780 indexBuffer = createBuffer(vk, vkDevice, &bufferCreateInfo);
784 indexAlloc = allocator.allocate(getBufferMemoryRequirements(vk, vkDevice, *indexBuffer), vk::MemoryRequirement::HostVisible);
785 VK_CHECK(vk.bindBufferMemory(vkDevice, *indexBuffer, indexAlloc->getMemory(), indexAlloc->getOffset()));
789 vk::flushMappedMemoryRange(m_vk, vkDevice, indexAlloc->getMemory(), indexAlloc->getOffset(), bufferSize);
879 const vk::VkDevice vkDevice = m_context.getDevice(); local
911 indirectBuffer = createBuffer(vk, vkDevice, &indirectCreateInfo);
912 indirectAlloc = allocator.allocate(getBufferMemoryRequirements(vk, vkDevice, *indirectBuffer), vk::MemoryRequirement::HostVisible);
913 VK_CHECK(vk.bindBufferMemory(vkDevice, *indirectBuffer, indirectAlloc->getMemory(), indirectAlloc->getOffset()));
917 vk::flushMappedMemoryRange(m_vk, vkDevice, indirectAllo
1044 const vk::VkDevice vkDevice = m_context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.cpp781 const VkDevice vkDevice = getDevice();
797 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &uniformBufferParams);
798 de::MovePtr<Allocation> alloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
799 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, alloc->getMemory(), alloc->getOffset()));
802 flushMappedMemoryRange(vk, vkDevice, alloc->getMemory(), alloc->getOffset(), size);
851 const VkDevice vkDevice = getDevice(); local
868 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &vertexBufferParams);
869 de::MovePtr<vk::Allocation> alloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
870 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, alloc->getMemory(), alloc->getOffset()));
873 flushMappedMemoryRange(vk, vkDevice, allo
1029 const VkDevice vkDevice = getDevice(); local
1251 const VkDevice vkDevice = m_context.getDevice(); local
1476 const VkDevice vkDevice = getDevice(); local
[all...]

Completed in 381 milliseconds

12