HomeSort by relevance Sort by last modified time
    Searched defs:vk (Results 51 - 75 of 77) sorted by null

1 23 4

  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageSizeTests.cpp 44 using namespace vk;
271 const DeviceInterface& vk = m_context.getDeviceInterface(); local
278 vk, device, allocator,
285 const DeviceInterface& vk = m_context.getDeviceInterface(); local
298 const Unique<VkShaderModule> shaderModule(createShaderModule(vk, device, m_context.getBinaryCollection().get("comp"), 0));
303 const Unique<VkPipelineLayout> pipelineLayout(makePipelineLayout(vk, device, descriptorSetLayout));
304 const Unique<VkPipeline> pipeline(makeComputePipeline(vk, device, *pipelineLayout, *shaderModule));
306 const Unique<VkCommandPool> cmdPool(makeCommandPool(vk, device, queueFamilyIndex));
307 const Unique<VkCommandBuffer> cmdBuffer(makeCommandBuffer(vk, device, *cmdPool));
309 beginCommandBuffer(vk, *cmdBuffer)
359 const DeviceInterface& vk = m_context.getDeviceInterface(); local
373 const DeviceInterface& vk = m_context.getDeviceInterface(); local
401 const DeviceInterface& vk = m_context.getDeviceInterface(); local
435 const DeviceInterface& vk = m_context.getDeviceInterface(); local
450 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktImageLoadStoreTests.cpp 52 using namespace vk;
359 const DeviceInterface& vk = context.getDeviceInterface(); local
367 vk.cmdPipelineBarrier(cmdBuffer, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, (VkDependencyFlags)0, 0, (const VkMemoryBarrier*)DE_NULL, 0, (const VkBufferMemoryBarrier*)DE_NULL, 1, &shaderWriteBarrier);
372 const DeviceInterface& vk = context.getDeviceInterface(); local
378 vk.cmdPipelineBarrier(cmdBuffer, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, VK_PIPELINE_STAGE_HOST_BIT, (VkDependencyFlags)0, 0, (const VkMemoryBarrier*)DE_NULL, 1, &shaderWriteBarrier, 0, (const VkImageMemoryBarrier*)DE_NULL);
389 const DeviceInterface& vk = context.getDeviceInterface(); local
403 vk.cmdPipelineBarrier(cmdBuffer, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT, (VkDependencyFlags)0, 0, (const VkMemoryBarrier*)DE_NULL, 0, (const VkBufferMemoryBarrier*)DE_NULL, 1, &prepareForTransferBarrier);
404 vk.cmdCopyImageToBuffer(cmdBuffer, image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, buffer, 1u, &copyRegion);
405 vk.cmdPipelineBarrier(cmdBuffer, VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_HOST_BIT, (VkDependencyFlags)0, 0, (const VkMemoryBarrier*)DE_NULL, 1, &copyBarrier, 0, (const VkImageMemoryBarrier*)DE_NULL);
548 const DeviceInterface& vk = m_context.getDeviceInterface() local
613 const DeviceInterface& vk = m_context.getDeviceInterface(); local
627 const DeviceInterface& vk = m_context.getDeviceInterface(); local
680 const DeviceInterface& vk = m_context.getDeviceInterface(); local
716 const DeviceInterface& vk = m_context.getDeviceInterface(); local
753 const DeviceInterface& vk = m_context.getDeviceInterface(); local
774 const DeviceInterface& vk = m_context.getDeviceInterface(); local
831 const DeviceInterface& vk = m_context.getDeviceInterface(); local
854 const DeviceInterface& vk = m_context.getDeviceInterface(); local
984 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1004 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1062 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1081 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1122 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1140 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1219 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1233 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1259 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.cpp 41 using namespace vk;
355 const DeviceInterface& vk = context.getDeviceInterface(); local
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)
954 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1002 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineTimestampTests.cpp 55 using namespace vk;
338 const DeviceInterface& vk = m_context.getDeviceInterface();
354 m_shaderModules[m_shaderStageCount] = createShaderModule(vk, vkDevice, &moduleCreateInfo);
370 const DeviceInterface& vk = m_context.getDeviceInterface();
386 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
585 return createGraphicsPipeline(vk, vkDevice, DE_NULL, &graphicsPipelineParams);
676 const DeviceInterface& vk = context.getDeviceInterface(); local
682 const std::vector<VkQueueFamilyProperties> queueProperties = vk::getPhysicalDeviceQueueFamilyProperties(m_context.getInstanceInterface(), m_context.getPhysicalDevice());
702 m_queryPool = createQueryPool(vk, vkDevice, &queryPoolParams);
715 m_cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams)
    [all...]
vktPipelineDepthTests.cpp 52 using namespace vk;
68 DE_ASSERT(vk::isDepthStencilFormat(format));
87 DE_ASSERT(vk::isDepthStencilFormat(format));
92 supportedFormatsMsg << vk::getFormatName(format);
230 const DeviceInterface& vk = context.getDeviceInterface(); 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)
819 const DeviceInterface& vk = m_context.getDeviceInterface(); local
870 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineBlendTests.cpp 55 using namespace vk;
302 const DeviceInterface& vk = m_context.getDeviceInterface(); 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)
796 const DeviceInterface& vk = m_context.getDeviceInterface(); local
947 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineEarlyFragmentTests.cpp 45 using namespace vk;
59 Buffer (const DeviceInterface& vk,
65 : m_buffer (createBuffer(vk, device, &bufferCreateInfo))
66 , m_allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement))
68 VK_CHECK(vk.bindBufferMemory(device, *m_buffer, m_allocation->getMemory(), m_allocation->getOffset()));
87 Image (const DeviceInterface& vk,
93 : m_image (createImage(vk, device, &imageCreateInfo))
94 , m_allocation (allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement))
96 VK_CHECK(vk.bindImageMemory(device, *m_image, m_allocation->getMemory(), m_allocation->getOffset()));
112 Move<VkImageView> makeImageView (const DeviceInterface& vk,
825 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineInputAssemblyTests.cpp 53 using namespace vk;
922 const DeviceInterface& vk = context.getDeviceInterface(); 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);
1455 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1532 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelinePushConstantTests.cpp 54 using namespace vk;
120 void createShaderStage (const DeviceInterface& vk,
419 void PushConstantGraphicsTestInstance::createShaderStage (const DeviceInterface& vk,
426 *module = createShaderModule(vk, device, programCollection.get(name), 0);
428 const vk::VkPipelineShaderStageCreateInfo stageCreateInfo =
473 const DeviceInterface& vk = context.getDeviceInterface(); local
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->getOff (…)
1071 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1147 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1257 const DeviceInterface& vk = context.getDeviceInterface(); local
1421 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineStencilTests.cpp 54 using namespace vk;
319 const DeviceInterface& vk = context.getDeviceInterface(); 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)
907 const DeviceInterface& vk = m_context.getDeviceInterface(); local
991 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineCacheTests.cpp 51 using namespace vk;
192 const DeviceInterface& vk = m_context.getDeviceInterface(); local
208 m_shaderModules[m_shaderStageCount] = createShaderModule(vk, vkDevice, &moduleCreateInfo);
224 const DeviceInterface& vk = m_context.getDeviceInterface(); local
240 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams);
441 return createGraphicsPipeline(vk, vkDevice, cache, &graphicsPipelineParams);
461 const DeviceInterface& vk = context.getDeviceInterface(); local
464 SimpleAllocator* memAlloc = new SimpleAllocator(vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
478 Move<VkBuffer> vertexBuffer = createBuffer(vk, vkDevice, &vertexBufferParams);
481 *pAlloc = memAlloc->allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible)
495 const DeviceInterface& vk = context.getDeviceInterface(); local
574 const DeviceInterface& vk = m_context.getDeviceInterface(); local
638 const DeviceInterface& vk = m_context.getDeviceInterface(); local
822 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1065 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1096 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1117 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1225 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1254 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1299 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1316 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1381 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1405 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1470 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineMultisampleTests.cpp 52 using namespace vk;
1284 const DeviceInterface& vk = context.getDeviceInterface(); local
1828 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineVertexInputTests.cpp 54 using namespace vk;
647 const DeviceInterface& vk = context.getDeviceInterface(); local
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)
1127 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1315 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1390 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 33 namespace vk namespace
154 NAME (VkDevice, const Vk##NAME##CreateInfo*) {} \
713 } // vk
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewAccessTests.cpp 48 using namespace vk;
91 de::MovePtr<vk::Allocation> m_uniformBufferAlloc;
148 const DeviceInterface& vk = context.getDeviceInterface(); 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- (…)
778 const DeviceInterface& vk = m_context.getDeviceInterface(); local
805 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktApiCopiesAndBlittingTests.cpp 48 using namespace vk;
119 de::MovePtr<tcu::TextureLevel> readImage (const vk::DeviceInterface& vk,
120 vk::VkDevice device,
121 vk::VkQueue queue,
122 vk::Allocator& allocator,
123 vk::VkImage image,
124 vk::VkFormat format,
136 const DeviceInterface& vk = context.getDeviceInterface(); local
150 m_cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams)
212 const DeviceInterface& vk = m_context.getDeviceInterface(); local
223 const DeviceInterface& vk = m_context.getDeviceInterface(); local
603 const DeviceInterface& vk = context.getDeviceInterface(); local
699 const DeviceInterface& vk = m_context.getDeviceInterface(); local
839 const DeviceInterface& vk = context.getDeviceInterface(); local
898 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1025 const DeviceInterface& vk = context.getDeviceInterface(); local
1092 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1250 const DeviceInterface& vk = context.getDeviceInterface(); local
1318 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktApiCommandBuffersTests.cpp 49 using namespace vk;
51 typedef de::SharedPtr<vk::Unique<vk::VkEvent> > VkEventSp;
496 /********* 19.1. Command Pools (5.1 in VK 1.0 Spec) ***************************/
500 const DeviceInterface& vk = context.getDeviceInterface(); local
511 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL);
519 const DeviceInterface& vk = context.getDeviceInterface(); local
531 createCommandPool(vk, vkDevice, &cmdPoolParams, allocationCallbacks);
539 const DeviceInterface& vk = context.getDeviceInterface(); local
550 createCommandPool(vk, vkDevice, &cmdPoolParams, DE_NULL)
558 const DeviceInterface& vk = context.getDeviceInterface(); local
577 const DeviceInterface& vk = context.getDeviceInterface(); local
598 const DeviceInterface& vk = context.getDeviceInterface(); local
620 const DeviceInterface& vk = context.getDeviceInterface(); local
650 const DeviceInterface& vk = context.getDeviceInterface(); local
694 const DeviceInterface& vk = context.getDeviceInterface(); local
725 const DeviceInterface& vk = context.getDeviceInterface(); local
755 const DeviceInterface& vk = context.getDeviceInterface(); local
799 const DeviceInterface& vk = context.getDeviceInterface(); local
830 const DeviceInterface& vk = context.getDeviceInterface(); local
926 const DeviceInterface& vk = context.getDeviceInterface(); local
1032 const DeviceInterface& vk = context.getDeviceInterface(); local
1141 const DeviceInterface& vk = context.getDeviceInterface(); local
1198 const DeviceInterface& vk = context.getDeviceInterface(); local
1299 const DeviceInterface& vk = context.getDeviceInterface(); local
1367 const DeviceInterface& vk = context.getDeviceInterface(); local
1470 const DeviceInterface& vk = context.getDeviceInterface(); local
1580 const DeviceInterface& vk = context.getDeviceInterface(); local
1759 const DeviceInterface& vk = context.getDeviceInterface(); local
1881 const DeviceInterface& vk = context.getDeviceInterface(); local
2126 const DeviceInterface& vk = context.getDeviceInterface(); local
2243 const DeviceInterface& vk = context.getDeviceInterface(); local
2393 const DeviceInterface& vk = context.getDeviceInterface(); local
2489 const DeviceInterface& vk = context.getDeviceInterface(); local
2585 const DeviceInterface& vk = context.getDeviceInterface(); local
2682 const DeviceInterface& vk = context.getDeviceInterface(); local
2788 const DeviceInterface& vk = context.getDeviceInterface(); local
2909 const DeviceInterface& vk = context.getDeviceInterface(); local
3069 const DeviceInterface& vk = context.getDeviceInterface(); local
3234 const DeviceInterface& vk = context.getDeviceInterface(); local
3349 const DeviceInterface& vk = context.getDeviceInterface(); local
3484 const DeviceInterface& vk = context.getDeviceInterface(); local
3658 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolOcclusionTests.cpp 48 StateObjects (const vk::DeviceInterface&vk, vkt::Context &context, const int numVertices, vk::VkPrimitiveTopology primitive);
49 void setVertices (const vk::DeviceInterface&vk, std::vector<tcu::Vec4> vertices);
59 vk::Move<vk::VkPipeline> m_pipeline;
60 vk::Move<vk::VkPipelineLayout> m_pipelineLayout;
63 vk::Move<vk::VkImageView> m_attachmentView
320 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
348 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
359 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
559 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
603 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
611 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
711 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
792 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
816 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btMatrix3x3.h 882 __m128 vk = bt_splat_ps(_mm_load_ss((float *)&k), 0x80); local
884 _mm_mul_ps(m[0].mVec128, vk),
885 _mm_mul_ps(m[1].mVec128, vk),
886 _mm_mul_ps(m[2].mVec128, vk));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 56 using namespace vk;
443 void ShaderRenderCase::initPrograms (vk::SourceCollections& programCollection) const
513 const DeviceInterface& vk = m_context.getDeviceInterface(); local
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);
539 uniformInfo->buffer = VkBufferSp(new vk::Unique<VkBuffer>(buffer));
545 void ShaderRenderCaseInstance::addUniform (deUint32 bindingLocation, vk::VkDescriptorType descriptorType, size_t dataSize, const void* data)
547 m_descriptorSetLayoutBuilder.addSingleBinding(descriptorType, vk::VK_SHADER_STAGE_ALL)
583 const DeviceInterface& vk = m_context.getDeviceInterface(); local
752 const DeviceInterface& vk = m_context.getDeviceInterface(); local
786 const DeviceInterface& vk = m_context.getDeviceInterface(); local
817 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1103 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp 54 using namespace vk;
1134 const DeviceInterface& vk = context.getDeviceInterface(); local
1316 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
1657 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1682 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1737 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1804 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /system/core/adb/
sysdeps_win32.cpp 1765 const WORD vk = key_event->wVirtualKeyCode; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 53 using namespace vk;
620 const DeviceInterface& vk = ctx.getDeviceInterface(); local
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);
698 const DeviceInterface& vk = ctx.getDeviceInterface(); local
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);
811 VK_CHECK(vk.bindImageMemory(vkDevice, colorImages.back().get()->get(), colorImageAlloc->getMemory(), colorImag (…)
1794 const DeviceInterface& vk = ctx.getDeviceInterface(); local
1817 const DeviceInterface& vk = ctx.getDeviceInterface(); local
1846 const DeviceInterface& vk = ctx.getDeviceInterface(); local
1945 const DeviceInterface& vk = ctx.getDeviceInterface(); local
2190 const DeviceInterface& vk = ctx.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp 68 using namespace vk;
4664 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 1767 const vk::DeviceInterface& vk = context.getDeviceInterface(); local
1836 const vk::DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]

Completed in 1693 milliseconds

1 23 4