Home
last modified time | relevance | path

Searched defs:FramebufferAttachmentsCreateInfo (Results 1 – 4 of 4) sorted by relevance

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp34791 struct FramebufferAttachmentsCreateInfo struct
34793 using NativeType = VkFramebufferAttachmentsCreateInfo;
34795 static const bool allowDuplicate = false;
34796 …CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferAttachmentsCreateInfo;
34799 …PP_CONSTEXPR FramebufferAttachmentsCreateInfo( uint32_t … in FramebufferAttachmentsCreateInfo() argument
34810FramebufferAttachmentsCreateInfo( VkFramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEX… in FramebufferAttachmentsCreateInfo() function
34816 FramebufferAttachmentsCreateInfo( in FramebufferAttachmentsCreateInfo() function
34831 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfo const *>( &rhs ); in operator =()
34836 …CONSTEXPR_14 FramebufferAttachmentsCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
34842 …sCreateInfo & setAttachmentImageInfoCount( uint32_t attachmentImageInfoCount_ ) VULKAN_HPP_NOEXCEPT in setAttachmentImageInfoCount()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp32477 struct FramebufferAttachmentsCreateInfo struct
32479 using NativeType = VkFramebufferAttachmentsCreateInfo;
32481 static const bool allowDuplicate = false;
32482 …_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferAttachmentsCreateInfo;
32486 VULKAN_HPP_CONSTEXPR FramebufferAttachmentsCreateInfo(uint32_t attachmentImageInfoCount_ = {}, cons… in FramebufferAttachmentsCreateInfo() function
32492FramebufferAttachmentsCreateInfo( VkFramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEX… in FramebufferAttachmentsCreateInfo() function
32497FramebufferAttachmentsCreateInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const VULKAN_HPP_N… in FramebufferAttachmentsCreateInfo() function
32508 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfo const *>( &rhs ); in operator =()
32513 …CONSTEXPR_14 FramebufferAttachmentsCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
32519 …sCreateInfo & setAttachmentImageInfoCount( uint32_t attachmentImageInfoCount_ ) VULKAN_HPP_NOEXCEPT in setAttachmentImageInfoCount()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp35853 struct FramebufferAttachmentsCreateInfo struct
35855 using NativeType = VkFramebufferAttachmentsCreateInfo;
35857 static const bool allowDuplicate = false;
35858 …CONST_OR_CONSTEXPR StructureType structureType = StructureType::eFramebufferAttachmentsCreateInfo;
35861 …PP_CONSTEXPR FramebufferAttachmentsCreateInfo( uint32_t … in FramebufferAttachmentsCreateInfo() argument
35872FramebufferAttachmentsCreateInfo( VkFramebufferAttachmentsCreateInfo const & rhs ) VULKAN_HPP_NOEX… in FramebufferAttachmentsCreateInfo() function
35878 FramebufferAttachmentsCreateInfo( in FramebufferAttachmentsCreateInfo() function
35893 … *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfo const *>( &rhs ); in operator =()
35898 …CONSTEXPR_14 FramebufferAttachmentsCreateInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
35904 …sCreateInfo & setAttachmentImageInfoCount( uint32_t attachmentImageInfoCount_ ) VULKAN_HPP_NOEXCEPT in setAttachmentImageInfoCount()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs34824 pub struct FramebufferAttachmentsCreateInfo { struct
34830 impl ::std::default::Default for FramebufferAttachmentsCreateInfo { argument
34840 impl FramebufferAttachmentsCreateInfo { implementation
34854 unsafe impl ExtendsFramebufferCreateInfo for FramebufferAttachmentsCreateInfo {} implementation
34878 pub fn build(self) -> FramebufferAttachmentsCreateInfo { in build()