Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert vk_bitflags_wrapped! methods to const fn #549

Merged
merged 3 commits into from
Jan 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ash/src/vk/macros.rs
Original file line number Diff line number Diff line change
@@ -20,17 +20,17 @@ macro_rules! vk_bitflags_wrapped {
self.0
}
#[inline]
pub fn is_empty(self) -> bool {
self == Self::empty()
pub const fn is_empty(self) -> bool {
self.0 == Self::empty().0
}
#[inline]
pub fn intersects(self, other: Self) -> bool {
self & other != Self::empty()
pub const fn intersects(self, other: Self) -> bool {
!Self(self.0 & other.0).is_empty()
}
#[doc = r" Returns whether `other` is a subset of `self`"]
#[inline]
pub fn contains(self, other: Self) -> bool {
self & other == other
pub const fn contains(self, other: Self) -> bool {
self.0 & other.0 == other.0
}
}
impl ::std::ops::BitOr for $name {