Home
last modified time | relevance | path

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

/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp50704 struct PhysicalDevice16BitStorageFeatures struct
50706 using NativeType = VkPhysicalDevice16BitStorageFeatures;
50708 static const bool allowDuplicate = false;
50709 …NST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDevice16BitStorageFeatures;
50712 …VULKAN_HPP_CONSTEXPR PhysicalDevice16BitStorageFeatures( VULKAN_HPP_NAMESPACE::Bool32 storageBuffe… in PhysicalDevice16BitStorageFeatures() argument
50727PhysicalDevice16BitStorageFeatures( VkPhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_… in PhysicalDevice16BitStorageFeatures() function
50737 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDevice16BitStorageFeatures const *>( &rhs … in operator =()
50742 …HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
50749 …rageBuffer16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setStorageBuffer16BitAccess()
50756 …16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setUniformAndStorageBuffer16BitAccess()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp47694 struct PhysicalDevice16BitStorageFeatures struct
47703 VULKAN_HPP_CONSTEXPR PhysicalDevice16BitStorageFeatures(VULKAN_HPP_NAMESPACE::Bool32 storageBuffer1… in PhysicalDevice16BitStorageFeatures() function
47709PhysicalDevice16BitStorageFeatures( VkPhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_… in PhysicalDevice16BitStorageFeatures() function
47719 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDevice16BitStorageFeatures const *>( &rhs … in operator =()
47724 …HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
47730 …rageBuffer16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setStorageBuffer16BitAccess()
47736 …16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setUniformAndStorageBuffer16BitAccess()
47742 …setStoragePushConstant16( VULKAN_HPP_NAMESPACE::Bool32 storagePushConstant16_ ) VULKAN_HPP_NOEXCEPT in setStoragePushConstant16()
47748 …& setStorageInputOutput16( VULKAN_HPP_NAMESPACE::Bool32 storageInputOutput16_ ) VULKAN_HPP_NOEXCEPT in setStorageInputOutput16()
47756 operator VkPhysicalDevice16BitStorageFeatures const &() const VULKAN_HPP_NOEXCEPT in operator VkPhysicalDevice16BitStorageFeatures const&()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp52549 struct PhysicalDevice16BitStorageFeatures struct
52551 using NativeType = VkPhysicalDevice16BitStorageFeatures;
52553 static const bool allowDuplicate = false;
52554 …NST_OR_CONSTEXPR StructureType structureType = StructureType::ePhysicalDevice16BitStorageFeatures;
52557 …VULKAN_HPP_CONSTEXPR PhysicalDevice16BitStorageFeatures( VULKAN_HPP_NAMESPACE::Bool32 storageBuffe… in PhysicalDevice16BitStorageFeatures() argument
52572PhysicalDevice16BitStorageFeatures( VkPhysicalDevice16BitStorageFeatures const & rhs ) VULKAN_HPP_… in PhysicalDevice16BitStorageFeatures() function
52582 …*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDevice16BitStorageFeatures const *>( &rhs … in operator =()
52587 …HPP_CONSTEXPR_14 PhysicalDevice16BitStorageFeatures & setPNext( void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
52594 …rageBuffer16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 storageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setStorageBuffer16BitAccess()
52601 …16BitAccess( VULKAN_HPP_NAMESPACE::Bool32 uniformAndStorageBuffer16BitAccess_ ) VULKAN_HPP_NOEXCEPT in setUniformAndStorageBuffer16BitAccess()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs20606 pub struct PhysicalDevice16BitStorageFeatures { struct
20614 impl ::std::default::Default for PhysicalDevice16BitStorageFeatures { argument
20626 impl PhysicalDevice16BitStorageFeatures { implementation
20640 unsafe impl ExtendsPhysicalDeviceFeatures2 for PhysicalDevice16BitStorageFeatures {} implementation
20642 unsafe impl ExtendsDeviceCreateInfo for PhysicalDevice16BitStorageFeatures {} implementation
20678 pub fn build(self) -> PhysicalDevice16BitStorageFeatures { in build()