HomeSort by relevance Sort by last modified time
    Searched refs:vk (Results 176 - 200 of 367) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/deqp/external/vulkancts/framework/vulkan/
vkApiVersion.hpp 30 namespace vk namespace
57 } // vk
vkBuilderUtil.cpp 28 namespace vk namespace
69 Move<VkDescriptorSetLayout> DescriptorSetLayoutBuilder::build (const DeviceInterface& vk, VkDevice device, VkDescriptorSetLayoutCreateFlags extraFlags) const
90 return createDescriptorSetLayout(vk, device, &createInfo);
132 Move<VkDescriptorPool> DescriptorPoolBuilder::build (const DeviceInterface& vk, VkDevice device, VkDescriptorPoolCreateFlags flags, deUint32 maxSets) const
145 return createDescriptorPool(vk, device, &createInfo);
221 void DescriptorSetUpdateBuilder::update (const DeviceInterface& vk, VkDevice device) const
243 vk.updateDescriptorSets(device, (deUint32)writes.size(), writePtr, (deUint32)m_copies.size(), copyPtr);
246 void DescriptorSetUpdateBuilder::updateWithPush (const DeviceInterface& vk, VkCommandBuffer cmd, VkPipelineBindPoint bindPoint, VkPipelineLayout pipelineLayout, deUint32 setIdx) const
267 vk.cmdPushDescriptorSetKHR(cmd, bindPoint, pipelineLayout, setIdx, (deUint32)m_writes.size(), writePtr);
270 } // vk
    [all...]
vkGlslProgram.cpp 28 namespace vk namespace
58 } // vk
vkSpirVProgram.cpp 28 namespace vk namespace
53 } // vk
vkDefs.hpp 55 #define VK_CHECK(EXPR) vk::checkResult((EXPR), #EXPR, __FILE__, __LINE__)
56 #define VK_CHECK_MSG(EXPR, MSG) vk::checkResult((EXPR), MSG, __FILE__, __LINE__)
61 namespace vk namespace
96 #define VK_CORE_FORMAT_LAST ((vk::VkFormat)(vk::VK_FORMAT_ASTC_12x12_SRGB_BLOCK+1))
227 } // vk
vkGlslProgram.hpp 36 namespace vk namespace
74 } // vk
vkPlatform.cpp 27 namespace vk namespace
76 dst << "vk::Platform::describePlatform() not implemented";
79 } // vk
vkSpirVProgram.hpp 36 namespace vk namespace
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.cpp 43 using namespace vk;
331 void createPipelineShaderStages (const DeviceInterface& vk,
340 const ModuleHandleSp mod(new Unique<VkShaderModule>(createShaderModule(vk, vkDevice, context.getBinaryCollection().get(moduleNdx->first), 0)));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
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)
768 const DeviceInterface& vk = m_context.getDeviceInterface(); local
919 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineImageUtil.cpp 39 using namespace vk;
167 void getLookupScaleBias (vk::VkFormat format, tcu::Vec4& lookupScale, tcu::Vec4& lookupBias)
203 de::MovePtr<tcu::TextureLevel> readColorAttachment (const vk::DeviceInterface& vk,
204 vk::VkDevice device,
205 vk::VkQueue queue,
207 vk::Allocator& allocator,
208 vk::VkImage image,
209 vk::VkFormat format,
235 buffer = createBuffer(vk, device, &bufferParams)
    [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);
1427 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1504 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineSpecConstantTests.cpp 49 using namespace vk;
466 const DeviceInterface& vk = m_context.getDeviceInterface(); local
474 const Buffer resultBuffer(vk, device, allocator, makeBufferCreateInfo(m_ssboSize, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
478 .build(vk, device));
482 .build(vk, device, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u));
484 const Unique<VkDescriptorSet> descriptorSet (makeDescriptorSet(vk, device, *descriptorPool, *descriptorSetLayout));
489 .update(vk, device);
498 const Unique<VkShaderModule> shaderModule (createShaderModule (vk, device, m_context.getBinaryCollection().get("comp"), 0));
499 const Unique<VkPipelineLayout> pipelineLayout(makePipelineLayout (vk, device, *descriptorSetLayout));
500 const Unique<VkPipeline> pipeline (makeComputePipeline(vk, device, *pipelineLayout, *shaderModule, pSpecInfo))
566 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.cpp 31 using namespace vk;
252 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
261 return createCommandPool(vk, device, &commandPoolParams);
264 Move<VkPipelineLayout> makePipelineLayout (const DeviceInterface& vk,
278 return createPipelineLayout(vk, device, &pipelineLayoutParams);
281 Move<VkPipeline> makeComputePipeline (const DeviceInterface& vk,
307 return createComputePipeline(vk, device, DE_NULL , &pipelineCreateInfo);
310 Move<VkBufferView> makeBufferView (const DeviceInterface& vk,
327 return createBufferView(vk, vkDevice, &bufferViewParams);
330 Move<VkImageView> makeImageView (const DeviceInterface& vk,
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
prime.go 250 vk := nat(nil).setWord(2)
257 t1 = t1.mul(vk, vk1)
260 t2, vk = t2.div(vk, t1, n)
268 t1 = t1.mul(vk, vk1)
273 t1 = t1.mul(vk, vk)
275 t2, vk = t2.div(vk, t1, n)
279 // Now k=s, so vk = V(s). Check V(s) ? ±2 (mod n)
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
prime.go 250 vk := nat(nil).setWord(2)
257 t1 = t1.mul(vk, vk1)
260 t2, vk = t2.div(vk, t1, n)
268 t1 = t1.mul(vk, vk1)
273 t1 = t1.mul(vk, vk)
275 t2, vk = t2.div(vk, t1, n)
279 // Now k=s, so vk = V(s). Check V(s) ? ±2 (mod n)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationInvarianceTests.cpp 51 using namespace vk;
233 void addDefaultPrograms (vk::SourceCollections& programCollection,
625 const DeviceInterface& vk = m_context.getDeviceInterface(); local
632 .setShader (vk, device, VK_SHADER_STAGE_VERTEX_BIT, m_context.getBinaryCollection().get("vert"), DE_NULL)
633 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT, m_context.getBinaryCollection().get("tesc"), DE_NULL)
634 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT, m_context.getBinaryCollection().get(getProgramName("tese", winding, usePointMode)), DE_NULL)
635 .setShader (vk, device, VK_SHADER_STAGE_GEOMETRY_BIT, m_context.getBinaryCollection().get(getProgramName("geom", usePointMode)), DE_NULL)
636 .build (vk, device, *m_pipelineLayout, *m_renderPass));
641 flushMappedMemoryRange(vk, device, alloc.getMemory(), alloc.getOffset(), m_resultBufferSizeBytes);
644 beginCommandBuffer(vk, *m_cmdBuffer)
695 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktTessellationUserDefinedIO.cpp 50 using namespace vk;
435 void initPrograms (vk::SourceCollections& programCollection) const;
627 void UserDefinedIOTest::initPrograms (vk::SourceCollections& programCollection) const
759 const DeviceInterface& vk = m_context.getDeviceInterface(); local
775 const Buffer vertexBuffer (vk, device, allocator, makeBufferCreateInfo(vertexDataSizeBytes, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), MemoryRequirement::HostVisible);
780 flushMappedMemoryRange(vk, device, alloc.getMemory(), alloc.getOffset(), vertexDataSizeBytes);
787 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
792 flushMappedMemoryRange(vk, device, alloc.getMemory(), alloc.getOffset(), resultBufferSizeBytes);
800 const Image colorAttachmentImage (vk, device, allocator,
807 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), (…)
    [all...]
vktTessellationCoordinatesTests.cpp 50 using namespace vk;
478 const DeviceInterface& vk = m_context.getDeviceInterface();
496 const Buffer tessLevelsBuffer(vk, device, allocator,
504 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
511 .build(vk, device));
516 .build(vk, device, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u));
518 const Unique<VkDescriptorSet> descriptorSet(makeDescriptorSet(vk, device, *descriptorPool, *descriptorSetLayout));
526 .update(vk, device);
530 const Unique<VkRenderPass> renderPass (makeRenderPassWithoutAttachments (vk, device));
531 const Unique<VkFramebuffer> framebuffer (makeFramebufferWithoutAttachments(vk, device, *renderPass))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTestCaseUtil.hpp 65 vk::VkPrimitiveTopology topology;
83 virtual void initPrograms (vk::SourceCollections& programCollection) const
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryLayeredRenderingTests.cpp 51 using namespace vk;
156 Move<VkRenderPass> makeRenderPass (const DeviceInterface& vk,
206 return createRenderPass(vk, device, &renderPassInfo);
209 Move<VkPipeline> makeGraphicsPipeline (const DeviceInterface& vk,
393 return createGraphicsPipeline(vk, device, DE_NULL, &graphicsPipelineInfo);
900 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreUtil.cpp 28 using namespace vk;
35 float computeStoreColorScale (const vk::VkFormat format, const tcu::IVec3 imageSize)
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 51 using namespace vk;
612 const DeviceInterface& vk = m_context.getDeviceInterface(); local
628 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &vertexBufferParams);
629 de::MovePtr<Allocation> alloc = m_context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
631 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, alloc->getMemory(), alloc->getOffset()));
634 flushMappedMemoryRange(vk, vkDevice, alloc->getMemory(), alloc->getOffset(), inputSize);
734 const DeviceInterface& vk = m_context.getDeviceInterface(); local
771 Unique<VkDescriptorSetLayout> emptyDescriptorSetLayout (createEmptyDescriptorSetLayout(vk, vkDevice));
772 Unique<VkDescriptorPool> dummyDescriptorPool (createDummyDescriptorPool(vk, vkDevice));
773 Unique<VkDescriptorSet> emptyDescriptorSet (allocateSingleDescriptorSet(vk, vkDevice, *dummyDescriptorPool, *emptyDescriptorSetLayout))
1755 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1778 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1807 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1908 const DeviceInterface& vk = m_context.getDeviceInterface(); local
2143 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassTests.cpp 63 using namespace vk;
224 Move<VkFramebuffer> createFramebuffer (const DeviceInterface& vk,
246 return createFramebuffer(vk, device, &pCreateInfo);
249 Move<VkImage> createImage (const DeviceInterface& vk,
283 return createImage(vk, device, &pCreateInfo);
286 void bindBufferMemory (const DeviceInterface& vk, VkDevice device, VkBuffer buffer, VkDeviceMemory mem, VkDeviceSize memOffset)
288 VK_CHECK(vk.bindBufferMemory(device, buffer, mem, memOffset));
291 void bindImageMemory (const DeviceInterface& vk, VkDevice device, VkImage image, VkDeviceMemory mem, VkDeviceSize memOffset)
293 VK_CHECK(vk.bindImageMemory(device, image, mem, memOffset));
296 Move<VkImageView> createImageView (const DeviceInterface& vk,
    [all...]
  /external/deqp/framework/platform/lnx/
tcuLnxPlatform.cpp 60 const vk::Platform& getVulkanPlatform (void) const { return m_vkPlatform; }

Completed in 1123 milliseconds

1 2 3 4 5 6 78 91011>>