Home
last modified time | relevance | path

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

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp26870 struct DeviceGroupSubmitInfo struct
26872 using NativeType = VkDeviceGroupSubmitInfo;
26874 static const bool allowDuplicate = false;
26875 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
26878 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() argument
26897 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() function
26903DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
26923 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
26928 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
26934 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp24641 struct DeviceGroupSubmitInfo struct
24643 using NativeType = VkDeviceGroupSubmitInfo;
24645 static const bool allowDuplicate = false;
24646 … VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
24650DeviceGroupSubmitInfo(uint32_t waitSemaphoreCount_ = {}, const uint32_t * pWaitSemaphoreDeviceIndi… in DeviceGroupSubmitInfo() function
24656 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() function
24661DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
24672 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
24677 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
24683 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp27739 struct DeviceGroupSubmitInfo struct
27741 using NativeType = VkDeviceGroupSubmitInfo;
27743 static const bool allowDuplicate = false;
27744 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
27747 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() function
27766 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() argument
27772DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
27792 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
27797 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
27803 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs17989 pub struct DeviceGroupSubmitInfo { struct
17999 impl ::std::default::Default for DeviceGroupSubmitInfo { argument
18013 impl DeviceGroupSubmitInfo { impl
18027 unsafe impl ExtendsSubmitInfo for DeviceGroupSubmitInfo {} implementation
18064 pub fn build(self) -> DeviceGroupSubmitInfo { in build()