HomeSort by relevance Sort by last modified time
    Searched defs:vkDevice (Results 1 - 21 of 21) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 96 const VkDevice vkDevice = m_context.getDevice();
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);
vktApiBufferTests.cpp 97 const VkDevice vkDevice = m_context.getDevice();
121 testBuffer = createBuffer(vk, vkDevice, &bufferParams);
128 vk.getBufferMemoryRequirements(vkDevice, *testBuffer, &memReqs);
142 testBuffer = createBuffer(vk, vkDevice, &bufferParams);
148 vk.getBufferMemoryRequirements(vkDevice, *testBuffer, &memReqs);
171 memory = allocateMemory(vk, vkDevice, &memAlloc, (const VkAllocationCallbacks*)DE_NULL);
184 vk.getDeviceQueue(vkDevice, queueFamilyIndex, 0, &queue);
225 const vk::Unique<vk::VkFence> fence(vk::createFence(vk, vkDevice, &fenceParams));
227 VK_CHECK(vk.resetFences(vkDevice, 1, &fence.get()))
    [all...]
vktApiSmokeTests.cpp 64 const VkDevice vkDevice = context.getDevice();
90 Move<VkSampler> tmpSampler = createSampler(vk, vkDevice, &samplerInfo);
111 const VkDevice vkDevice = context.getDevice();
113 const Unique<VkShaderModule> shader (createShaderModule(vk, vkDevice, context.getBinaryCollection().get("test"), 0));
332 const VkDevice vkDevice = context.getDevice();
336 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
359 const Unique<VkBuffer> vertexBuffer (createBuffer(vk, vkDevice, &vertexBufferParams))
    [all...]
vktApiBufferViewAccessTests.cpp 149 const VkDevice vkDevice = context.getDevice();
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)
    [all...]
vktApiCopiesAndBlittingTests.cpp 120 vk::VkDevice device,
137 const VkDevice vkDevice = context.getDevice();
150 m_cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams);
164 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, &cmdBufferAllocateInfo);
176 m_fence = createFence(vk, vkDevice, &fenceParams);
213 const VkDevice vkDevice = m_context.getDevice();
218 flushMappedMemoryRange(vk, vkDevice, bufferAlloc.getMemory(), bufferAlloc.getOffset(), bufferSize);
224 const VkDevice vkDevice = m_context.getDevice()
    [all...]
vktApiCommandBuffersTests.cpp 69 const VkDevice m_device;
499 const VkDevice vkDevice = context.getDevice();
511 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL);
518 const VkDevice vkDevice = context.getDevice();
531 createCommandPool(vk, vkDevice, &cmdPoolParams, allocationCallbacks);
538 const VkDevice vkDevice = context.getDevice();
550 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.cpp 355 const VkDevice vkDevice = context.getDevice();
358 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
430 m_image = createImage(vk, vkDevice, &imageParams);
431 m_imageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_image), MemoryRequirement::Any);
432 VK_CHECK(vk.bindImageMemory(vkDevice, *m_image, m_imageAlloc->getMemory(), m_imageAlloc->getOffset()));
435 uploadTestTexture(vk, vkDevice, queue, queueFamilyIndex, memAlloc, *m_texture, *m_image);
450 m_imageView = createImageView(vk, vkDevice, &imageViewParams);
451 m_sampler = createSampler(vk, vkDevice, &m_samplerParams);
458 m_descriptorPool = descriptorPoolBuilder.build(vk, vkDevice, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u)
    [all...]
vktPipelineTimestampTests.cpp 339 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();
702 m_queryPool = createQueryPool(vk, vkDevice, &queryPoolParams)
    [all...]
vktPipelineDepthTests.cpp 231 const VkDevice vkDevice = context.getDevice();
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)
    [all...]
vktPipelineBlendTests.cpp 303 const VkDevice vkDevice = m_context.getDevice();
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)
    [all...]
vktPipelineInputAssemblyTests.cpp 923 const VkDevice vkDevice = context.getDevice();
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);
    [all...]
vktPipelinePushConstantTests.cpp 121 VkDevice device,
420 VkDevice device,
474 const VkDevice vkDevice = context.getDevice();
476 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
503 m_colorImage = createImage(vk, vkDevice, &m_colorImageCreateInfo);
506 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
507 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
524 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
586 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams)
    [all...]
vktPipelineStencilTests.cpp 320 const VkDevice vkDevice = context.getDevice();
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)
    [all...]
vktPipelineCacheTests.cpp 193 const VkDevice vkDevice = m_context.getDevice();
208 m_shaderModules[m_shaderStageCount] = createShaderModule(vk, vkDevice, &moduleCreateInfo);
225 const VkDevice vkDevice = m_context.getDevice();
240 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
441 return createGraphicsPipeline(vk, vkDevice, cache, &graphicsPipelineParams);
462 const VkDevice vkDevice = context.getDevice();
464 SimpleAllocator* memAlloc = new SimpleAllocator(vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()))
    [all...]
vktPipelineMultisampleTests.cpp     [all...]
vktPipelineVertexInputTests.cpp 648 const VkDevice vkDevice = context.getDevice();
650 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
674 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
677 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
678 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
695 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
746 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
764 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
780 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 512 const VkDevice vkDevice = m_context.getDevice();
528 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &uniformBufferParams);
529 de::MovePtr<Allocation> alloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
530 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, alloc->getMemory(), alloc->getOffset()));
533 flushMappedMemoryRange(vk, vkDevice, alloc->getMemory(), alloc->getOffset(), size);
582 const VkDevice vkDevice = m_context.getDevice();
599 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &vertexBufferParams);
600 de::MovePtr<vk::Allocation> alloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 619 const VkDevice vkDevice = ctx.getDevice();
636 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &vertexBufferParams);
637 de::MovePtr<Allocation> alloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
638 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, alloc->getMemory(), alloc->getOffset()));
641 flushMappedMemoryRange(vk, vkDevice, alloc->getMemory(), alloc->getOffset(), inputSize);
697 const VkDevice vkDevice = ctx.getDevice();
804 Move<VkImage> colorImage = createImage(vk, vkDevice, &colorImageParams);
810 de::MovePtr<Allocation> colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *((const VkImage*) colorImages.back().get())), MemoryRequirement::Any)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp     [all...]

Completed in 339 milliseconds