Home
last modified time | relevance | path

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

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp29041 struct DeviceGroupSubmitInfo struct
29043 using NativeType = VkDeviceGroupSubmitInfo;
29045 static const bool allowDuplicate = false;
29046 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
29049 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() function
29068 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() argument
29074DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
29094 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
29099 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
29105 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp28807 struct DeviceGroupSubmitInfo struct
28809 using NativeType = VkDeviceGroupSubmitInfo;
28811 static const bool allowDuplicate = false;
28812 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
28815 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() function
28834 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() argument
28840DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
28860 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
28865 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
28871 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/angle/third_party/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp35823 struct DeviceGroupSubmitInfo struct
35825 using NativeType = VkDeviceGroupSubmitInfo;
35827 static const bool allowDuplicate = false;
35828 …VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eDeviceGroupSubmitInfo;
35831 … VULKAN_HPP_CONSTEXPR DeviceGroupSubmitInfo( uint32_t waitSemaphoreCount_ = {}, in DeviceGroupSubmitInfo() argument
35850 DeviceGroupSubmitInfo( VkDeviceGroupSubmitInfo const & rhs ) VULKAN_HPP_NOEXCEPT in DeviceGroupSubmitInfo() argument
35856DeviceGroupSubmitInfo( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries<const uint32_t> const & waitS… in DeviceGroupSubmitInfo() function
35876 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DeviceGroupSubmitInfo const *>( &rhs ); in operator =()
35881 …VULKAN_HPP_CONSTEXPR_14 DeviceGroupSubmitInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
35887 …4 DeviceGroupSubmitInfo & setWaitSemaphoreCount( uint32_t waitSemaphoreCount_ ) VULKAN_HPP_NOEXCEPT in setWaitSemaphoreCount()
[all …]
/external/rust/android-crates-io/crates/ash/src/vk/
Ddefinitions.rs20042 pub struct DeviceGroupSubmitInfo { struct
20052 impl ::std::default::Default for DeviceGroupSubmitInfo { argument
20067 unsafe impl TaggedStructure for DeviceGroupSubmitInfo { implementation
20070 impl DeviceGroupSubmitInfo { impl
20084 unsafe impl ExtendsSubmitInfo for DeviceGroupSubmitInfo {} implementation
20124 pub fn build(self) -> DeviceGroupSubmitInfo { in build()