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

1 2 3 4 5 6 7 891011>>

  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 454 vk::assert_success(vk::MapMemory(dev_, mem_, 0, VK_WHOLE_SIZE,
465 vk::UnmapMemory(dev_, mem_);
470 vk::FreeMemory(dev_, mem_, nullptr);
471 vk::DestroyBuffer(dev_, vb_, nullptr);
472 vk::DestroyBuffer(dev_, ib_, nullptr);
478 vk::CmdBindVertexBuffers(cmd, 0, 1, &vb_, &vb_offset);
480 vk::CmdBindIndexBuffer(cmd, ib_, 0, index_type_);
486 vk::CmdDrawIndexed(cmd, draw.indexCount, draw.instanceCount,
497 vk::CreateBuffer(dev_, &buf_info, nullptr, &vb_)
    [all...]
ShellWin32.cpp 137 return vk::GetPhysicalDeviceWin32PresentationSupportKHR(
149 vk::assert_success(vk::CreateWin32SurfaceKHR(instance, &surface_info, nullptr, &surface));
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryRequirementsTests.cpp 50 using namespace vk;
54 Move<VkBuffer> makeBuffer (const DeviceInterface& vk, const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsageFlags usage)
67 return createBuffer(vk, device, &createInfo);
70 VkMemoryRequirements getBufferMemoryRequirements (const DeviceInterface& vk, const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsageFlags usage)
72 const Unique<VkBuffer> buffer(makeBuffer(vk, device, size, flags, usage));
73 return getBufferMemoryRequirements(vk, device, *buffer);
76 VkMemoryRequirements getBufferMemoryRequirements2 (const DeviceInterface& vk, const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsageFlags usage, void* next = DE_NULL)
78 const Unique<VkBuffer> buffer (makeBuffer(vk, device, size, flags, usage));
92 vk.getBufferMemoryRequirements2KHR(device, &info, &req2);
97 VkMemoryRequirements getImageMemoryRequirements2 (const DeviceInterface& vk, const VkDevice device, const VkImageCreateInfo& createInfo, void* next = DE_NULL
273 const DeviceInterface& vk = context.getDeviceInterface(); local
1304 const DeviceInterface& vk = context.getDeviceInterface(); local
1657 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferAndImageAllocationUtil.hpp 32 namespace vk namespace
45 using namespace vk;
vktApiCopiesAndBlittingTests.cpp 84 typedef std::set<vk::VkFormat, BinaryCompare<vk::VkFormat> > FormatSet;
89 using namespace vk;
103 // This is effectively same as vk::isFloatFormat(mapTextureFormat(format))
291 de::MovePtr<tcu::TextureLevel> readImage (vk::VkImage image,
293 void submitCommandsAndWait (const DeviceInterface& vk,
302 void readImageAspect (vk::VkImage src,
311 const DeviceInterface& vk = context.getDeviceInterface(); local
324 m_cmdPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT, queueFamilyIndex);
327 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, *m_cmdPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY)
412 const DeviceInterface& vk = m_context.getDeviceInterface(); local
424 const DeviceInterface& vk = m_context.getDeviceInterface(); local
621 const DeviceInterface& vk = m_context.getDeviceInterface(); local
821 const DeviceInterface& vk = context.getDeviceInterface(); local
927 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1166 const DeviceInterface& vk = context.getDeviceInterface(); local
1226 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1337 const DeviceInterface& vk = context.getDeviceInterface(); local
1405 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1545 const DeviceInterface& vk = context.getDeviceInterface(); local
1614 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1744 const DeviceInterface& vk = context.getDeviceInterface(); local
1865 const DeviceInterface& vk = m_context.getDeviceInterface(); local
2623 const DeviceInterface& vk = context.getDeviceInterface(); local
3162 const DeviceInterface& vk = m_context.getDeviceInterface(); local
3286 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktApiNullHandleTests.cpp 40 using namespace vk;
189 const DeviceInterface& vk = context.getDeviceInterface(); local
206 const Unique<VkCommandPool> cmdPool (createCommandPool(vk, device, &cmdPoolCreateInfo));
214 const Unique<VkCommandPool> cmdPool (createCommandPool(vk, device, &cmdPoolCreateInfo, recordingAllocator.getCallbacks()));
226 const DeviceInterface& vk = context.getDeviceInterface(); local
251 const Unique<VkDescriptorPool> descriptorPool (createDescriptorPool(vk, device, &descriptorPoolCreateInfo));
259 const Unique<VkDescriptorPool> descriptorPool (createDescriptorPool(vk, device, &descriptorPoolCreateInfo, recordingAllocator.getCallbacks()));
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineReferenceRenderer.hpp 266 rr::TestFunc mapVkCompareOp (vk::VkCompareOp compareFunc);
267 rr::PrimitiveType mapVkPrimitiveTopology (vk::VkPrimitiveTopology primitiveTopology);
268 rr::BlendFunc mapVkBlendFactor (vk::VkBlendFactor blendFactor);
269 rr::BlendEquation mapVkBlendOp (vk::VkBlendOp blendOp);
270 tcu::BVec4 mapVkColorComponentFlags (vk::VkColorComponentFlags flags);
271 rr::StencilOp mapVkStencilOp (vk::VkStencilOp stencilOp);
vktPipelineVertexInputTests.cpp 54 using namespace vk;
692 const DeviceInterface& vk = context.getDeviceInterface(); local
695 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
729 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
732 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
733 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
750 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
801 m_renderPass = createRenderPass(vk, vkDevice, &renderPassParams);
819 m_framebuffer = createFramebuffer(vk, vkDevice, &framebufferParams);
835 m_pipelineLayout = createPipelineLayout(vk, vkDevice, &pipelineLayoutParams)
1150 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1338 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1413 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
vktPipelineMultisampleInterpolationTests.cpp 39 using namespace vk;
645 const vk::VkRect2D renderArea =
    [all...]
vktPipelineMultisampleTests.cpp 55 using namespace vk;
1462 const DeviceInterface& vk = context.getDeviceInterface(); local
2076 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.hpp 47 typedef vk::Unique<VkBuffer> BufferHandleUp;
49 typedef vk::Unique<vk::VkShaderModule> ModuleHandleUp;
51 typedef std::pair<std::string, vk::VkShaderStageFlagBits> EntryToStage;
53 typedef std::map<vk::VkShaderStageFlagBits, std::vector<deInt32> > StageToSpecConstantMap;
54 typedef std::pair<vk::VkDescriptorType, BufferSp> Resource;
119 vk::VkFormat getVkFormat (void) const;
254 vk::VkShaderStageFlagBits requiredStages;
303 vk::VkShaderStageFlagBits stage;
305 ShaderElement (const std::string& moduleName_, const std::string& entryPoint_, vk::VkShaderStageFlagBits shaderStage_)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.hpp 31 namespace vk namespace
44 Move<VkDescriptorSetLayout> build (const DeviceInterface& vk, VkDevice device, VkDescriptorSetLayoutCreateFlags extraFlags = 0) const;
97 Move<VkDescriptorPool> build (const DeviceInterface& vk, VkDevice device, VkDescriptorPoolCreateFlags flags, deUint32 maxSets) const;
155 void update (const DeviceInterface& vk, VkDevice device) const;
156 void updateWithPush (const DeviceInterface& vk, VkCommandBuffer cmd, VkPipelineBindPoint bindPoint, VkPipelineLayout pipelineLayout, deUint32 setIdx) const;
244 } // vk
vkMemUtil.hpp 29 namespace vk namespace
125 SimpleAllocator (const DeviceInterface& vk, VkDevice device, const VkPhysicalDeviceMemoryProperties& deviceMemProps);
145 } // vk
vkDebugReportUtil.hpp 32 namespace vk namespace
90 } // vk
vkDeviceUtil.cpp 33 namespace vk namespace
92 TCU_THROW(InternalError, "Invalid --deqp-vk-device-id");
97 } // vk
vkPlatform.hpp 35 namespace vk namespace
153 } // vk
vkWsiUtil.hpp 32 namespace vk namespace
102 } // vk
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMutableTests.cpp 42 using namespace vk;
413 Move<VkImage> makeImage (const DeviceInterface& vk,
457 return createImage(vk, device, &imageParams);
460 inline Move<VkBuffer> makeBuffer (const DeviceInterface& vk, const VkDevice device, const VkDeviceSize bufferSize, const VkBufferUsageFlags usage)
463 return createBuffer(vk, device, &bufferCreateInfo);
471 Move<VkSampler> makeSampler (const DeviceInterface& vk, const VkDevice device)
495 return createSampler(vk, device, &samplerParams);
499 Move<VkPipelineLayout> makePipelineLayout (const DeviceInterface& vk,
512 return createPipelineLayout(vk, device, &info);
515 Move<VkPipeline> makeGraphicsPipeline (const DeviceInterface& vk,
1670 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBase.cpp 30 using namespace vk;
48 deUint32 findMatchingQueueFamilyIndex (const std::vector<vk::VkQueueFamilyProperties>& queueFamilyProperties,
65 typedef std::map<vk::VkQueueFlags, std::vector<Queue> > QueuesMap;
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCaseUtil.hpp 35 void init (vk::SourceCollections&, Arg0) const {}
54 void initPrograms (vk::SourceCollections& dst) const { m_progs.init(dst, m_arg0); }
106 typedef void (*Function) (vk::SourceCollections& dst);
112 void init (vk::SourceCollections& dst, FunctionInstance0::Function) const { m_func(dst); }
122 typedef void (*Function) (vk::SourceCollections& dst, Arg0 arg0);
128 void init (vk::SourceCollections& dst, const typename FunctionInstance1<Arg0>::Args& args) const { m_func(dst, args.arg0); }
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.cpp 40 using namespace vk;
48 typedef de::SharedPtr<vk::Unique<VkBuffer> > VkBufferSp;
93 return vk::getChannelAccess(m_description,
113 return vk::getChannelAccess(m_description,
270 vk::MemoryRequirement requirement)
431 void fillImageMemory (const vk::DeviceInterface& vkd,
432 vk::VkDevice device,
434 vk::VkImage image,
435 const std::vector<de::SharedPtr<vk::Allocation> >& allocations,
437 vk::VkAccessFlags nextAccess
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
trim.go 120 // v = ?(v0, v1, ..., u, ..., vk)
122 // v = ?(v0, v1, ..., u0, ..., vk, u1, ..., un)
128 // v = ?(v0, v1, ..., vi, ..., vk)
131 // v = ?(v0, v1, ..., vk, vi, vi, ...)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
trim.go 120 // v = ?(v0, v1, ..., u, ..., vk)
122 // v = ?(v0, v1, ..., u0, ..., vk, u1, ..., un)
128 // v = ?(v0, v1, ..., vi, ..., vk)
131 // v = ?(v0, v1, ..., vk, vi, vi, ...)
  /external/deqp/android/cts/
Android.mk 36 LOCAL_COMPATIBILITY_SUPPORT_FILES += $(LOCAL_PATH)/nyc/vk-master.txt:nyc-vk-master.txt
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateTestCaseUtil.hpp 87 virtual void initPrograms (vk::SourceCollections& programCollection) const

Completed in 4035 milliseconds

1 2 3 4 5 6 7 891011>>