Searched defs:pAttachments (Results 1 - 12 of 12) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsMakeUtil.cpp267 const VkImageView* pAttachments,
278 pAttachments, // const VkImageView* pAttachments;
263 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const deUint32 width, const deUint32 height, const deUint32 layers) argument
H A DvktFragmentOperationsEarlyFragmentTests.cpp181 attachments, // const VkAttachmentDescription* pAttachments;
195 const VkImageView* pAttachments,
204 pAttachments, // const VkImageView* pAttachments;
356 &pipelineColorBlendAttachmentState, // const VkPipelineColorBlendAttachmentState* pAttachments;
191 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const tcu::IVec2 size) argument
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMakeUtil.cpp288 const VkImageView* pAttachments,
299 pAttachments, // const VkImageView* pAttachments;
284 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const deUint32 width, const deUint32 height, const deUint32 layers) argument
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.cpp407 const VkImageView* pAttachments,
419 pAttachments, // const VkImageView* pAttachments;
403 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const deUint32 width, const deUint32 height, const deUint32 layers) argument
/external/vulkan-validation-layers/layers/
H A Dimage.cpp409 if (pCreateInfo->pAttachments[i].format == VK_FORMAT_UNDEFINED) {
411 ss << "vkCreateRenderPass: pCreateInfo->pAttachments[" << i << "].format is VK_FORMAT_UNDEFINED";
416 if (!validate_VkImageLayoutKHR(pCreateInfo->pAttachments[i].initialLayout) ||
417 !validate_VkImageLayoutKHR(pCreateInfo->pAttachments[i].finalLayout)) {
419 ss << "vkCreateRenderPass parameter, VkImageLayout in pCreateInfo->pAttachments[" << i << "], is unrecognized";
425 if (!validate_VkAttachmentLoadOp(pCreateInfo->pAttachments[i].loadOp)) {
427 ss << "vkCreateRenderPass parameter, VkAttachmentLoadOp in pCreateInfo->pAttachments[" << i << "], is unrecognized";
433 if (!validate_VkAttachmentStoreOp(pCreateInfo->pAttachments[i].storeOp)) {
435 ss << "vkCreateRenderPass parameter, VkAttachmentStoreOp in pCreateInfo->pAttachments[" << i << "], is unrecognized";
442 depth_format_present |= vk_format_is_depth_or_stencil(pCreateInfo->pAttachments[
956 CmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment *pAttachments, uint32_t rectCount, const VkClearRect *pRects) argument
[all...]
H A Dobject_tracker.cpp1625 if (pCreateInfo->pAttachments) {
1627 skip_call |= ValidateObject(device, pCreateInfo->pAttachments[idx0], VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT,
2255 const VkClearAttachment *pAttachments, uint32_t rectCount,
2267 ->CmdClearAttachments(commandBuffer, attachmentCount, pAttachments, rectCount, pRects);
2254 CmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment *pAttachments, uint32_t rectCount, const VkClearRect *pRects) argument
H A Dparameter_validation.cpp3154 ParameterName("pCreateInfos[%i].pColorBlendState->pAttachments", ParameterName::IndexVector{i}),
3155 pCreateInfos[i].pColorBlendState->attachmentCount, pCreateInfos[i].pColorBlendState->pAttachments, false, true);
3157 if (pCreateInfos[i].pColorBlendState->pAttachments != NULL) {
3162 ParameterName("pCreateInfos[%i].pColorBlendState->pAttachments[%i].blendEnable",
3164 pCreateInfos[i].pColorBlendState->pAttachments[attachmentIndex].blendEnable);
3168 ParameterName("pCreateInfos[%i].pColorBlendState->pAttachments[%i].srcColorBlendFactor",
3171 pCreateInfos[i].pColorBlendState->pAttachments[attachmentIndex].srcColorBlendFactor);
3175 ParameterName("pCreateInfos[%i].pColorBlendState->pAttachments[%i].dstColorBlendFactor",
3178 pCreateInfos[i].pColorBlendState->pAttachments[attachmentIndex].dstColorBlendFactor);
3182 ParameterName("pCreateInfos[%i].pColorBlendState->pAttachments[
4434 CmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment *pAttachments, uint32_t rectCount, const VkClearRect *pRects) argument
[all...]
H A Dcore_validation.cpp1925 if (rpci->pAttachments[attachment].format != VK_FORMAT_UNDEFINED) {
1926 color_attachments[i] = rpci->pAttachments[attachment].format;
2366 primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pColorAttachments,
2367 secondaryColorCount, secondaryRPCI->pAttachments)) {
2373 primaryColorCount, primaryRPCI->pAttachments,
2375 secondaryColorCount, secondaryRPCI->pAttachments)) {
2384 1, primaryRPCI->pAttachments,
2386 1, secondaryRPCI->pAttachments)) {
2398 primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pInputAttachments,
2399 secondaryColorCount, secondaryRPCI->pAttachments)) {
3287 VkPipelineColorBlendAttachmentState *pAttachments = &pPipeline->attachments[0]; local
8475 CmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment *pAttachments, uint32_t rectCount, const VkClearRect *pRects) argument
[all...]
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c2092 const VkClearAttachment *pAttachments, uint32_t rectCount,
2098 disp->CmdClearAttachments(commandBuffer, attachmentCount, pAttachments,
2091 vkCmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment *pAttachments, uint32_t rectCount, const VkClearRect *pRects) argument
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp868 VKAPI_ATTR void VKAPI_CALL vkCmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment* pAttachments, uint32_t rectCount, const VkClearRect* pRects) argument
870 device_dispatch_table(commandBuffer)->CmdClearAttachments(commandBuffer, attachmentCount, pAttachments, rectCount, pRects);
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1863 const VkPipelineColorBlendAttachmentState* pAttachments; member in struct:VkPipelineColorBlendStateCreateInfo
2025 const VkImageView* pAttachments; member in struct:VkFramebufferCreateInfo
2076 const VkAttachmentDescription* pAttachments; member in struct:VkRenderPassCreateInfo
2374 typedef void (VKAPI_PTR *PFN_vkCmdClearAttachments)(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const VkClearAttachment* pAttachments, uint32_t rectCount, const VkClearRect* pRects);
3083 const VkClearAttachment* pAttachments,
H A Dvulkan.hpp7712 , pAttachments( pAttachments_ )
7762 pAttachments = pAttachments_;
7796 && ( pAttachments == rhs.pAttachments )
7815 const ImageView* pAttachments; member in struct:vk::vk::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::FramebufferCreateInfo
10576 , pAttachments( pAttachments_ )
10630 pAttachments = pAttachments_;
10653 && ( pAttachments == rhs.pAttachments )
10671 const PipelineColorBlendAttachmentState* pAttachments; member in struct:vk::vk::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::SubpassContents::SubpassContents::DynamicState::QueueFlagBits::MemoryPropertyFlagBits::MemoryHeapFlagBits::AccessFlagBits::BufferUsageFlagBits::BufferCreateFlagBits::ShaderStageFlagBits::ImageUsageFlagBits::ImageCreateFlagBits::PipelineCreateFlagBits::ColorComponentFlagBits::PipelineColorBlendStateCreateInfo
14200 clearAttachments( uint32_t attachmentCount, const ClearAttachment* pAttachments, uint32_t rectCount, const ClearRect* pRects ) const argument
14711 const AttachmentDescription* pAttachments; member in struct:vk::vk::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::SubpassContents::SubpassContents::DynamicState::QueueFlagBits::MemoryPropertyFlagBits::MemoryHeapFlagBits::AccessFlagBits::BufferUsageFlagBits::BufferCreateFlagBits::ShaderStageFlagBits::ImageUsageFlagBits::ImageCreateFlagBits::PipelineCreateFlagBits::ColorComponentFlagBits::FenceCreateFlagBits::FormatFeatureFlagBits::QueryControlFlagBits::QueryResultFlagBits::CommandBufferUsageFlagBits::QueryPipelineStatisticFlagBits::ImageAspectFlagBits::SparseImageFormatFlagBits::SparseMemoryBindFlagBits::PipelineStageFlagBits::CommandPoolCreateFlagBits::CommandPoolResetFlagBits::CommandBufferResetFlagBits::SampleCountFlagBits::AttachmentDescriptionFlagBits::StencilFaceFlagBits::DescriptorPoolCreateFlagBits::DependencyFlagBits::RenderPassCreateInfo
[all...]

Completed in 182 milliseconds