Home
last modified time | relevance | path

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

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp26590 struct DeviceGroupPresentInfoKHR struct
26592 using NativeType = VkDeviceGroupPresentInfoKHR;
26594 static const bool allowDuplicate = false;
26595 …AN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupPresentInfoKHR;
26598 VULKAN_HPP_CONSTEXPR DeviceGroupPresentInfoKHR( in DeviceGroupPresentInfoKHR() argument
26612 DeviceGroupPresentInfoKHR( VkDeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupPresentInfoKHR() function
26618DeviceGroupPresentInfoKHR( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & d… in DeviceGroupPresentInfoKHR() function
26631 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupPresentInfoKHR const *>( &rhs ); in operator =()
26636 …AN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
26642 …PR_14 DeviceGroupPresentInfoKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT in setSwapchainCount()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp24378 struct DeviceGroupPresentInfoKHR struct
24380 using NativeType = VkDeviceGroupPresentInfoKHR;
24382 static const bool allowDuplicate = false;
24383 …KAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupPresentInfoKHR;
24387 VULKAN_HPP_CONSTEXPR DeviceGroupPresentInfoKHR(uint32_t swapchainCount_ = {}, const uint32_t * pDev… in DeviceGroupPresentInfoKHR() function
24393 DeviceGroupPresentInfoKHR( VkDeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupPresentInfoKHR() function
24398DeviceGroupPresentInfoKHR( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & d… in DeviceGroupPresentInfoKHR() function
24409 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupPresentInfoKHR const *>( &rhs ); in operator =()
24414 …AN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
24420 …PR_14 DeviceGroupPresentInfoKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT in setSwapchainCount()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp27459 struct DeviceGroupPresentInfoKHR struct
27461 using NativeType = VkDeviceGroupPresentInfoKHR;
27463 static const bool allowDuplicate = false;
27464 …AN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupPresentInfoKHR;
27467 VULKAN_HPP_CONSTEXPR DeviceGroupPresentInfoKHR( in DeviceGroupPresentInfoKHR() function
27481 DeviceGroupPresentInfoKHR( VkDeviceGroupPresentInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupPresentInfoKHR() function
27487DeviceGroupPresentInfoKHR( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & d… in DeviceGroupPresentInfoKHR() function
27500 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupPresentInfoKHR const *>( &rhs ); in operator =()
27505 …AN_HPP_CONSTEXPR_14 DeviceGroupPresentInfoKHR & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
27511 …PR_14 DeviceGroupPresentInfoKHR & setSwapchainCount( uint32_t swapchainCount_ ) VULKAN_HPP_NOEXCEPT in setSwapchainCount()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs18384 pub struct DeviceGroupPresentInfoKHR { struct
18391 impl ::std::default::Default for DeviceGroupPresentInfoKHR { argument
18402 impl DeviceGroupPresentInfoKHR { implementation
18416 unsafe impl ExtendsPresentInfoKHR for DeviceGroupPresentInfoKHR {} implementation
18441 pub fn build(self) -> DeviceGroupPresentInfoKHR { in build()