HomeSort by relevance Sort by last modified time
    Searched refs:vkDevice (Results 1 - 25 of 26) sorted by null

1 2

  /external/deqp/external/vulkancts/modules/vulkan/api/
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...]
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...]
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...]
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...]
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);
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...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
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...]
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...]
vktPipelineImageSamplingInstance.cpp 356 const VkDevice vkDevice = context.getDevice();
359 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
437 m_image = createImage(vk, vkDevice, &imageParams);
438 m_imageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_image), MemoryRequirement::Any);
439 VK_CHECK(vk.bindImageMemory(vkDevice, *m_image, m_imageAlloc->getMemory(), m_imageAlloc->getOffset()));
442 uploadTestTexture(vk, vkDevice, queue, queueFamilyIndex, memAlloc, *m_texture, *m_image);
457 m_imageView = createImageView(vk, vkDevice, &imageViewParams);
458 m_sampler = createSampler(vk, vkDevice, &m_samplerParams);
465 m_descriptorPool = descriptorPoolBuilder.build(vk, vkDevice, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u)
    [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...]
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...]
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...]
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...]
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...]
vktPipelineMultisampleTests.cpp     [all...]
vktPipelineEarlyFragmentTests.cpp 60 const VkDevice device,
88 const VkDevice device,
113 const VkDevice vkDevice,
130 return createImageView(vk, vkDevice, &imageViewParams);
151 const VkDevice device,
167 const VkDevice device,
183 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
195 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
226 const VkDevice device
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.hpp 116 void setupUniformData (const VkDevice& vkDevice,
126 void setupUniformArray (const VkDevice& vkDevice,
137 void setupSamplerData (const VkDevice& vkDevice,
156 void addUniforms (const VkDevice& vkDevice, const DeviceInterface& vk, const VkQueue queue, const deUint32 queueFamilyIndex, Allocator& memAlloc);
240 void uploadImage (const VkDevice& vkDevice,
    [all...]
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/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/compute/
vktComputeTestsUtil.cpp 36 const VkDevice device,
47 const VkDevice device,
89 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
101 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
115 const VkDevice device)
131 const VkDevice device,
148 const VkDevice device,
176 const VkDevice vkDevice,
192 return createBufferView(vk, vkDevice, &bufferViewParams)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp 37 const VkDevice device,
48 const VkDevice device,
225 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
237 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
251 const VkDevice device,
268 const VkDevice device,
296 const VkDevice vkDevice,
312 return createBufferView(vk, vkDevice, &bufferViewParams);
316 const VkDevice vkDevice
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.cpp 39 const VkDevice device,
50 const VkDevice device,
272 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
284 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
298 const VkDevice device,
315 const VkDevice device,
343 const VkDevice vkDevice,
359 return createBufferView(vk, vkDevice, &bufferViewParams);
363 const VkDevice vkDevice
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp     [all...]

Completed in 521 milliseconds

1 2