Searched refs:pipelineBindPoint (Results 1 - 25 of 26) sorted by relevance

12

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkTypeUtil.inl285 inline VkSubpassDescription makeSubpassDescription (VkSubpassDescriptionFlags flags, VkPipelineBindPoint pipelineBindPoint, deUint32 inputAttachmentCount, const VkAttachmentReference* pInputAttachments, deUint32 colorAttachmentCount, const VkAttachmentReference* pColorAttachments, const VkAttachmentReference* pResolveAttachments, const VkAttachmentReference* pDepthStencilAttachment, deUint32 preserveAttachmentCount, const deUint32* pPreserveAttachments)
289 res.pipelineBindPoint = pipelineBindPoint;
H A DvkDeviceDriverImpl.inl385 void DeviceDriver::cmdBindPipeline (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) const
387 m_vk.cmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline);
435 void DeviceDriver::cmdBindDescriptorSets (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, deUint32 firstSet, deUint32 descriptorSetCount, const VkDescriptorSet* pDescriptorSets, deUint32 dynamicOffsetCount, const deUint32* pDynamicOffsets) const
437 m_vk.cmdBindDescriptorSets(commandBuffer, pipelineBindPoint, layout, firstSet, descriptorSetCount, pDescriptorSets, dynamicOffsetCount, pDynamicOffsets);
H A DvkConcreteDeviceInterface.inl80 virtual void cmdBindPipeline (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) const;
90 virtual void cmdBindDescriptorSets (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, deUint32 firstSet, deUint32 descriptorSetCount, const VkDescriptorSet* pDescriptorSets, deUint32 dynamicOffsetCount, const deUint32* pDynamicOffsets) const;
H A DvkVirtualDeviceInterface.inl80 virtual void cmdBindPipeline (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) const = 0;
90 virtual void cmdBindDescriptorSets (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, deUint32 firstSet, deUint32 descriptorSetCount, const VkDescriptorSet* pDescriptorSets, deUint32 dynamicOffsetCount, const deUint32* pDynamicOffsets) const = 0;
H A DvkNullDriverImpl.inl604 VKAPI_ATTR void VKAPI_CALL cmdBindPipeline (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline)
607 DE_UNREF(pipelineBindPoint);
675 VKAPI_ATTR void VKAPI_CALL cmdBindDescriptorSets (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, deUint32 firstSet, deUint32 descriptorSetCount, const VkDescriptorSet* pDescriptorSets, deUint32 dynamicOffsetCount, const deUint32* pDynamicOffsets)
678 DE_UNREF(pipelineBindPoint);
H A DvkFunctionPointerTypes.inl97 typedef VKAPI_ATTR void (VKAPI_CALL* CmdBindPipelineFunc) (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline);
107 typedef VKAPI_ATTR void (VKAPI_CALL* CmdBindDescriptorSetsFunc) (VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, deUint32 firstSet, deUint32 descriptorSetCount, const VkDescriptorSet* pDescriptorSets, deUint32 dynamicOffsetCount, const deUint32* pDynamicOffsets);
H A DvkStructTypes.inl960 VkPipelineBindPoint pipelineBindPoint;
/external/skia/src/gpu/vk/
H A DGrVkRenderPass.cpp53 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
/external/vulkan-validation-layers/layers/
H A Dparameter_validation.cpp3837 if (pCreateInfo->pSubpasses->pipelineBindPoint < VK_PIPELINE_BIND_POINT_BEGIN_RANGE ||
3838 pCreateInfo->pSubpasses->pipelineBindPoint > VK_PIPELINE_BIND_POINT_END_RANGE) {
3840 "vkCreateRenderPass parameter, VkPipelineBindPoint pCreateInfo->pSubpasses->pipelineBindPoint, is an "
4142 bool PostCmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) { argument
4144 if (pipelineBindPoint < VK_PIPELINE_BIND_POINT_BEGIN_RANGE || pipelineBindPoint > VK_PIPELINE_BIND_POINT_END_RANGE) {
4146 "vkCmdBindPipeline parameter, VkPipelineBindPoint pipelineBindPoint, is an unrecognized enumerator");
4154 vkCmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) { argument
4155 get_dispatch_table(pc_device_table_map, commandBuffer)->CmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline);
4157 PostCmdBindPipeline(commandBuffer, pipelineBindPoint, pipelin
4229 PostCmdBindDescriptorSets(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t setCount, uint32_t dynamicOffsetCount) argument
4242 vkCmdBindDescriptorSets(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet *pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t *pDynamicOffsets) argument
[all...]
H A Dcore_validation.cpp3318 static VkBool32 validatePipelineState(layer_data *my_data, const GLOBAL_CB_NODE *pCB, const VkPipelineBindPoint pipelineBindPoint,
3320 if (VK_PIPELINE_BIND_POINT_GRAPHICS == pipelineBindPoint) {
7135 vkCmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) {
7142 if ((VK_PIPELINE_BIND_POINT_COMPUTE == pipelineBindPoint) && (pCB->activeRenderPass)) {
7152 pCB->lastBound[pipelineBindPoint].pipeline = pipeline;
7154 skipCall |= validatePipelineState(dev_data, pCB, pipelineBindPoint, pipeline);
7163 dev_data->device_dispatch_table->CmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline);
7305 vkCmdBindDescriptorSets(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout,
7333 if (lastSetIndex >= pCB->lastBound[pipelineBindPoint].boundDescriptorSets.size())
7334 pCB->lastBound[pipelineBindPoint]
[all...]
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp158 SubpassDescription (vk::VkPipelineBindPoint pipelineBindPoint,
H A DvktDrawCreateInfoUtil.cpp475 pipelineBindPoint = _pipelineBindPoint;
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateCreateInfoUtil.hpp160 SubpassDescription (vk::VkPipelineBindPoint pipelineBindPoint,
H A DvktDynamicStateCreateInfoUtil.cpp475 pipelineBindPoint = _pipelineBindPoint;
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolCreateInfoUtil.hpp158 SubpassDescription (vk::VkPipelineBindPoint pipelineBindPoint,
H A DvktQueryPoolCreateInfoUtil.cpp478 pipelineBindPoint = _pipelineBindPoint;
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c1685 VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) {
1690 disp->CmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline);
1785 VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint,
1793 disp->CmdBindDescriptorSets(commandBuffer, pipelineBindPoint, layout,
1684 vkCmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) argument
1784 vkCmdBindDescriptorSets( VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet *pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t *pDynamicOffsets) argument
/external/skia/third_party/vulkan/
H A Dvulkan.h1994 VkPipelineBindPoint pipelineBindPoint; member in struct:VkSubpassDescription
2290 typedef void (VKAPI_PTR *PFN_vkCmdBindPipeline)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline);
2300 typedef void (VKAPI_PTR *PFN_vkCmdBindDescriptorSets)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets);
2840 VkPipelineBindPoint pipelineBindPoint,
2891 VkPipelineBindPoint pipelineBindPoint,
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h2003 VkPipelineBindPoint pipelineBindPoint; member in struct:VkSubpassDescription
2299 typedef void (VKAPI_PTR *PFN_vkCmdBindPipeline)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline);
2309 typedef void (VKAPI_PTR *PFN_vkCmdBindDescriptorSets)(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets);
2849 VkPipelineBindPoint pipelineBindPoint,
2900 VkPipelineBindPoint pipelineBindPoint,
/external/vulkan-validation-layers/demos/smoke/
H A DSmoke.cpp188 subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktSynchronization.cpp329 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
H A DvktRenderPassTests.cpp430 Subpass (VkPipelineBindPoint pipelineBindPoint, argument
437 : m_pipelineBindPoint (pipelineBindPoint)
1002 subpass.getPipelineBindPoint(), // pipelineBindPoint;
/external/vulkan-validation-layers/tests/
H A Dvkrenderframework.cpp327 subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
/external/vulkan-validation-layers/demos/
H A Dcube.c1422 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
H A Dtri.c1167 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,

Completed in 346 milliseconds

12