Searched refs:DependencyFlagBits (Results 1 – 5 of 5) sorted by relevance
2295 enum class DependencyFlagBits : VkDependencyFlags enum2302 using DependencyFlags = Flags<DependencyFlagBits>;2305 template <> struct FlagTraits<DependencyFlagBits>2309 DependencyFlagBits::eByRegion2310 | DependencyFlagBits::eDeviceGroup2311 | DependencyFlagBits::eViewLocal;
564 if ( value & DependencyFlagBits::eByRegion ) result += "ByRegion | "; in to_string()565 if ( value & DependencyFlagBits::eDeviceGroup ) result += "DeviceGroup | "; in to_string()566 if ( value & DependencyFlagBits::eViewLocal ) result += "ViewLocal | "; in to_string()3074 VULKAN_HPP_INLINE std::string to_string( DependencyFlagBits value ) in to_string()3078 case DependencyFlagBits::eByRegion : return "ByRegion"; in to_string()3079 case DependencyFlagBits::eDeviceGroup : return "DeviceGroup"; in to_string()3080 case DependencyFlagBits::eViewLocal : return "ViewLocal"; in to_string()
758 if ( value & DependencyFlagBits::eByRegion ) result += "ByRegion | "; in to_string()759 if ( value & DependencyFlagBits::eDeviceGroup ) result += "DeviceGroup | "; in to_string()760 if ( value & DependencyFlagBits::eViewLocal ) result += "ViewLocal | "; in to_string()761 if ( value & DependencyFlagBits::eFeedbackLoopEXT ) result += "FeedbackLoopEXT | "; in to_string()5330 VULKAN_HPP_INLINE std::string to_string( DependencyFlagBits value ) in to_string()5334 case DependencyFlagBits::eByRegion : return "ByRegion"; in to_string()5335 case DependencyFlagBits::eDeviceGroup : return "DeviceGroup"; in to_string()5336 case DependencyFlagBits::eViewLocal : return "ViewLocal"; in to_string()5337 case DependencyFlagBits::eFeedbackLoopEXT : return "FeedbackLoopEXT"; in to_string()
3538 enum class DependencyFlagBits : VkDependencyFlags enum3548 using DependencyFlags = Flags<DependencyFlagBits>;3551 template <> struct FlagTraits<DependencyFlagBits>3555 DependencyFlagBits::eByRegion3556 | DependencyFlagBits::eDeviceGroup3557 | DependencyFlagBits::eViewLocal3558 | DependencyFlagBits::eFeedbackLoopEXT;
872 .dependencyFlags = vkhpp::DependencyFlagBits::eByRegion, in CreateFramebuffer()