HomeSort by relevance Sort by last modified time
    Searched refs:vkd (Results 1 - 14 of 14) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSwapchainTests.cpp 204 VkQueue getDeviceQueue (const DeviceInterface& vkd, VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex)
207 vkd.getDeviceQueue(device, queueFamilyIndex, queueIndex, &queue);
216 const DeviceDriver vkd; member in struct:vkt::wsi::__anon9916::DeviceHelper
231 , vkd (vki, *device)
232 , queue (getDeviceQueue(vkd, *device, queueFamilyIndex, 0))
574 const Unique<VkSwapchainKHR> swapchain (createSwapchainKHR(devHelper.vkd, *devHelper.device, &curParams));
640 const Unique<VkSwapchainKHR> swapchain (createSwapchainKHR(devHelper.vkd, *devHelper.device, &curParams, failingAllocator.getCallbacks()));
755 TriangleRenderer (const DeviceInterface& vkd,
771 static Move<VkRenderPass> createRenderPass (const DeviceInterface& vkd,
774 static Move<VkPipelineLayout> createPipelineLayout(const DeviceInterface& vkd,
1410 const DeviceInterface& vkd = devHelper.vkd; local
1545 const DeviceInterface& vkd = devHelper.vkd; local
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.cpp 45 HostPtr (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags);
57 void* mapMemory (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory mem, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags)
60 VK_CHECK(vkd.mapMemory(device, mem, offset, size, flags, &hostPtr));
65 HostPtr::HostPtr (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags)
66 : m_vkd (vkd)
69 , m_ptr (mapMemory(vkd, device, memory, offset, size, flags))
213 void flushMappedMemoryRange (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size)
224 VK_CHECK(vkd.flushMappedMemoryRanges(device, 1u, &range));
227 void invalidateMappedMemoryRange (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size)
238 VK_CHECK(vkd.invalidateMappedMemoryRanges(device, 1u, &range))
    [all...]
vkMemUtil.hpp 136 void flushMappedMemoryRange (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size);
137 void invalidateMappedMemoryRange (const DeviceInterface& vkd, VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size);
vkWsiUtil.hpp 97 std::vector<VkImage> getSwapchainImages (const DeviceInterface& vkd,
vkWsiUtil.cpp 313 std::vector<VkImage> getSwapchainImages (const DeviceInterface& vkd,
319 VK_CHECK(vkd.getSwapchainImagesKHR(device, swapchain, &numImages, DE_NULL));
325 VK_CHECK(vkd.getSwapchainImagesKHR(device, swapchain, &numImages, &images[0]));
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryPipelineBarrierTests.cpp 472 vk::Move<vk::VkCommandBuffer> createCommandBuffer (const vk::DeviceInterface& vkd,
487 return vk::allocateCommandBuffer(vkd, device, &bufferInfo);
490 vk::Move<vk::VkCommandBuffer> createBeginCommandBuffer (const vk::DeviceInterface& vkd,
514 vk::Move<vk::VkCommandBuffer> commandBuffer (createCommandBuffer(vkd, device, pool, level));
516 vkd.beginCommandBuffer(*commandBuffer, &beginInfo);
521 vk::Move<vk::VkCommandPool> createCommandPool (const vk::DeviceInterface& vkd,
534 return vk::createCommandPool(vkd, device, &poolInfo);
537 vk::Move<vk::VkBuffer> createBuffer (const vk::DeviceInterface& vkd,
557 return vk::createBuffer(vkd, device, &createInfo);
560 vk::Move<vk::VkDeviceMemory> allocMemory (const vk::DeviceInterface& vkd,
    [all...]
vktMemoryAllocationTests.cpp 115 const DeviceInterface& vkd = m_context.getDeviceInterface(); local
168 VK_CHECK(vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx]));
179 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
189 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
206 VK_CHECK(vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx]));
209 vkd.freeMemory(device, memoryObjects[ndx], (const VkAllocationCallbacks*)DE_NULL);
222 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
358 const DeviceInterface& vkd = m_context.getDeviceInterface(); local
367 vkd.freeMemory(device, heap.objects[objectNdx].memory, (const VkAllocationCallbacks*)DE_NULL);
375 const DeviceInterface& vkd = m_context.getDeviceInterface() local
    [all...]
vktMemoryMappingTests.cpp 325 const DeviceInterface& vkd = context.getDeviceInterface(); local
402 const Unique<VkDeviceMemory> memory (allocMemory(vkd, device, config.allocationSize * atomSize, memoryTypeIndex));
409 VK_CHECK(vkd.mapMemory(device, *memory, config.mapping.offset * atomSize, config.mapping.size * atomSize, 0u, &ptr));
442 VK_CHECK(vkd.flushMappedMemoryRanges(device, (deUint32)ranges.size(), &ranges[0]));
448 vkd.unmapMemory(device, *memory);
449 VK_CHECK(vkd.mapMemory(device, *memory, config.mapping.offset * atomSize, config.mapping.size * atomSize, 0u, &ptr));
474 VK_CHECK(vkd.invalidateMappedMemoryRanges(device, (deUint32)ranges.size(), &ranges[0]));
480 vkd.unmapMemory(device, *memory);
608 MemoryObject (const DeviceInterface& vkd,
616 MemoryMapping* mapRandom (const DeviceInterface& vkd, VkDevice device, de::Random& rng)
962 const DeviceInterface& vkd = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktSynchronization.cpp 157 void createVulkanBuffer (const DeviceInterface& vkd, VkDevice device, Allocator& allocator, const BufferParameters& bufferParameters, Buffer& buffer, MemoryRequirement visibility)
171 buffer.buffer = createBuffer(vkd, device, &bufferCreateParams);
172 buffer.allocation = allocator.allocate(getBufferMemoryRequirements(vkd, device, *buffer.buffer), visibility);
174 VK_CHECK(vkd.bindBufferMemory(device, *buffer.buffer, buffer.allocation->getMemory(), buffer.allocation->getOffset()));
192 VK_CHECK(vkd.flushMappedMemoryRanges(device, 1, &range));
229 void createVulkanImage (const DeviceInterface& vkd, VkDevice device, Allocator& allocator, const ImageParameters& imageParameters, Image& image, MemoryRequirement visibility)
254 image.image = createImage(vkd, device, &imageCreateParams);
255 image.allocation = allocator.allocate(getImageMemoryRequirements(vkd, device, *image.image), visibility);
257 VK_CHECK(vkd.bindImageMemory(device, *image.image, image.allocation->getMemory(), image.allocation->getOffset()));
280 image.imageView = createImageView(vkd, device, &imageViewCreateInfo)
558 const DeviceInterface& vkd; member in struct:vkt::__anon9910::TestContext
    [all...]
vktShaderLibrary.cpp 1291 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
1302 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
1423 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
1660 const vk::DeviceInterface& vkd = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 229 const DeviceInterface& vkd; member in struct:vkt::api::__anon9733::Environment
238 , vkd (context.getDeviceInterface())
255 , vkd (vkd_)
602 return allocateMemory(env.vkd, env.device, &allocInfo, env.allocationCallbacks);
613 return getDeviceMemoryParameters(getImageMemoryRequirements(env.vkd, env.device, image));
618 return getDeviceMemoryParameters(getBufferMemoryRequirements(env.vkd, env.device, image));
647 const VkMemoryRequirements memReqs = getBufferMemoryRequirements(env.vkd, env.device, *buffer);
669 return createBuffer(env.vkd, env.device, &bufferInfo, env.allocationCallbacks);
704 VK_CHECK(env.vkd.bindBufferMemory(env.device, *buffer.object, *memory.object, 0));
726 return createBufferView(env.vkd, env.device, &bufferViewInfo, env.allocationCallbacks)
2212 DeviceDriver vkd; member in struct:vkt::EnvClone
    [all...]
vktApiCommandBuffersTests.cpp 2070 const DeviceInterface& vkd = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp 1179 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
1190 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 1755 const vk::DeviceInterface& vkd = context.getDeviceInterface(); local
    [all...]

Completed in 85 milliseconds