HomeSort by relevance Sort by last modified time
    Searched refs:vk (Results 251 - 275 of 457) sorted by null

<<111213141516171819

  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatform.cpp 27 namespace vk namespace
81 dst << "vk::Platform::describePlatform() not implemented";
84 } // vk
vkSpirVProgram.hpp 36 namespace vk namespace
vkBuilderUtil.hpp 31 namespace vk namespace
50 Move<VkDescriptorSetLayout> build (const DeviceInterface& vk, VkDevice device, VkDescriptorSetLayoutCreateFlags extraFlags = 0) const;
109 Move<VkDescriptorPool> build (const DeviceInterface& vk, VkDevice device, VkDescriptorPoolCreateFlags flags, deUint32 maxSets) const;
167 void update (const DeviceInterface& vk, VkDevice device) const;
168 void updateWithPush (const DeviceInterface& vk, VkCommandBuffer cmd, VkPipelineBindPoint bindPoint, VkPipelineLayout pipelineLayout, deUint32 setIdx) const;
256 } // vk
vkPrograms.hpp 37 namespace vk namespace
212 ProgramBinary* assembleProgram (const vk::SpirVAsmSource& program, SpirVProgramInfo* buildInfo);
221 vk::SpirvVersion getMaxSpirvVersionForAsm (const deUint32 vulkanVersion);
222 vk::SpirvVersion getMaxSpirvVersionForGlsl (const deUint32 vulkanVersion);
223 vk::SpirvVersion getBaselineSpirvVersion (const deUint32 vulkanVersion);
228 } // vk
vkMemUtil.hpp 29 namespace vk namespace
127 SimpleAllocator (const DeviceInterface& vk, VkDevice device, const VkPhysicalDeviceMemoryProperties& deviceMemProps);
148 } // vk
  /external/deqp/framework/platform/lnx/
tcuLnxPlatform.cpp 64 const vk::Platform& getVulkanPlatform (void) const { return m_vkPlatform; }
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 415 vk::assert_success(vk::MapMemory(dev_, mem_, 0, VK_WHOLE_SIZE, 0, reinterpret_cast<void **>(&vb_data)));
425 vk::UnmapMemory(dev_, mem_);
429 vk::FreeMemory(dev_, mem_, nullptr);
430 vk::DestroyBuffer(dev_, vb_, nullptr);
431 vk::DestroyBuffer(dev_, ib_, nullptr);
436 vk::CmdBindVertexBuffers(cmd, 0, 1, &vb_, &vb_offset);
438 vk::CmdBindIndexBuffer(cmd, ib_, 0, index_type_);
443 vk::CmdDrawIndexed(cmd, draw.indexCount, draw.instanceCount, draw.firstIndex, draw.vertexOffset, draw.firstInstance);
452 vk::CreateBuffer(dev_, &buf_info, nullptr, &vb_)
    [all...]
ShellWin32.cpp 115 return vk::GetPhysicalDeviceWin32PresentationSupportKHR(phy, queue_family) == VK_TRUE;
125 vk::assert_success(vk::CreateWin32SurfaceKHR(instance, &surface_info, nullptr, &surface));
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleInterpolationTests.cpp 39 using namespace vk;
64 bool checkForError (const vk::VkImageCreateInfo& imageRSInfo, const tcu::ConstPixelBufferAccess& dataRS, const deUint32 errorCompNdx)
89 void initPrograms (vk::SourceCollections& programCollection) const;
113 tcu::TestStatus verifyImageData (const vk::VkImageCreateInfo& imageRSInfo,
152 template<> tcu::TestStatus MSInstance<MSInstanceDistinctValues>::verifyImageData (const vk::VkImageCreateInfo& imageRSInfo, const tcu::ConstPixelBufferAccess& dataRS) const
188 template<> void MSCase<MSCaseSampleQualifierDistinctValues>::initPrograms (vk::SourceCollections& programCollection) const
249 template<> void MSCase<MSCaseInterpolateAtSampleDistinctValues>::initPrograms (vk::SourceCollections& programCollection) const
348 template<> tcu::TestStatus MSInstance<MSInstanceInterpolateScreenPosition>::verifyImageData (const vk::VkImageCreateInfo& imageRSInfo, const tcu::ConstPixelBufferAccess& dataRS) const
370 template<> void MSCase<MSCaseInterpolateAtSampleSingleSample>::initPrograms (vk::SourceCollections& programCollection) const
437 template<> void MSCase<MSCaseInterpolateAtSampleIgnoresCentroid>::initPrograms (vk::SourceCollections& programCollection) cons
    [all...]
vktPipelineMultisampleTests.cpp 55 using namespace vk;
1619 const DeviceInterface& vk = context.getDeviceInterface(); local
2721 const DeviceInterface& vk = m_context.getDeviceInterface(); local
2755 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
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 55 using namespace vk;
791 const DeviceInterface& vk = context.getDeviceInterface(); local
794 SimpleAllocator memAlloc (vk, vkDevice, getPhysicalDeviceMemoryProperties(context.getInstanceInterface(), context.getPhysicalDevice()));
828 m_colorImage = createImage(vk, vkDevice, &colorImageParams);
831 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *m_colorImage), MemoryRequirement::Any);
832 VK_CHECK(vk.bindImageMemory(vkDevice, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
849 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
1266 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1454 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1529 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /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.getBufferMemoryRequirements2(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
1303 const DeviceInterface& vk = context.getDeviceInterface(); local
1654 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferAndImageAllocationUtil.hpp 32 namespace vk namespace
45 using namespace vk;
vktApiMaintenance3Check.cpp 31 using namespace vk;
44 typedef vk::VkPhysicalDeviceProperties DevProp1;
45 typedef vk::VkPhysicalDeviceProperties2 DevProp2;
46 typedef vk::VkPhysicalDeviceMaintenance3Properties MainDevProp3;
164 vk::VkDescriptorSetLayoutCreateInfo pCreateInfo =
174 vk::VkDescriptorSetLayoutSupport pSupport =
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()));
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))
299 de::MovePtr<tcu::TextureLevel> readImage (vk::VkImage image,
302 void submitCommandsAndWait (const DeviceInterface& vk,
312 void readImageAspect (vk::VkImage src,
322 const DeviceInterface& vk = context.getDeviceInterface(); local
333 m_cmdPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT, queueFamilyIndex);
336 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, *m_cmdPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY)
425 const DeviceInterface& vk = m_context.getDeviceInterface(); local
437 const DeviceInterface& vk = m_context.getDeviceInterface(); local
648 const DeviceInterface& vk = m_context.getDeviceInterface(); local
855 const DeviceInterface& vk = context.getDeviceInterface(); local
962 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1207 const DeviceInterface& vk = context.getDeviceInterface(); local
1267 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1378 const DeviceInterface& vk = context.getDeviceInterface(); local
1446 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1586 const DeviceInterface& vk = context.getDeviceInterface(); local
1655 const DeviceInterface& vk = m_context.getDeviceInterface(); local
1785 const DeviceInterface& vk = context.getDeviceInterface(); local
1906 const DeviceInterface& vk = m_context.getDeviceInterface(); local
2650 const DeviceInterface& vk = context.getDeviceInterface(); local
2795 const DeviceInterface& vk = m_context.getDeviceInterface(); local
3304 const DeviceInterface& vk = context.getDeviceInterface(); local
3843 const DeviceInterface& vk = m_context.getDeviceInterface(); local
3967 const DeviceInterface& vk = m_context.getDeviceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmLoopDepInfTests.cpp 37 using namespace vk;
212 if (!context.contextSupports(vk::ApiVersion(1, 1, 0)))
vktSpvAsmLoopDepLenTests.cpp 37 using namespace vk;
227 if (!context.contextSupports(vk::ApiVersion(1, 1, 0)))
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMutableTests.cpp 43 using namespace vk;
414 Move<VkImage> makeImage (const DeviceInterface& vk,
458 return createImage(vk, device, &imageParams);
461 inline Move<VkBuffer> makeBuffer (const DeviceInterface& vk, const VkDevice device, const VkDeviceSize bufferSize, const VkBufferUsageFlags usage)
464 return createBuffer(vk, device, &bufferCreateInfo);
472 Move<VkSampler> makeSampler (const DeviceInterface& vk, const VkDevice device)
496 return createSampler(vk, device, &samplerParams);
500 Move<VkPipelineLayout> makePipelineLayout (const DeviceInterface& vk,
513 return createPipelineLayout(vk, device, &info);
516 Move<VkPipeline> makeGraphicsPipeline (const DeviceInterface& vk,
1641 const DeviceInterface& vk = context.getDeviceInterface(); local
    [all...]
  /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/wsi/
vktWsiDisplayTests.cpp 47 using namespace vk;
80 typedef std::set<vk::VkDisplayKHR, BinaryCompare<vk::VkDisplayKHR> > DisplaySet;
81 typedef std::vector<vk::VkDisplayKHR> DisplayVector;
82 typedef std::vector<vk::VkDisplayModePropertiesKHR> DisplayModePropertiesVector;
87 vk::VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR
88 | vk::VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR
89 | vk::VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR
90 | vk::VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR
91 | vk::VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KH
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
trim.go 133 // v = ?(v0, v1, ..., u, ..., vk)
135 // v = ?(v0, v1, ..., u0, ..., vk, u1, ..., un)
141 // v = ?(v0, v1, ..., vi, ..., vk)
144 // v = ?(v0, v1, ..., vk, vi, vi, ...)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
trim.go 133 // v = ?(v0, v1, ..., u, ..., vk)
135 // v = ?(v0, v1, ..., u0, ..., vk, u1, ..., un)
141 // v = ?(v0, v1, ..., vi, ..., vk)
144 // 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

Completed in 1278 milliseconds

<<111213141516171819