diff options
Diffstat (limited to 'src/components/gfx/macros.rs')
-rw-r--r-- | src/components/gfx/macros.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/components/gfx/macros.rs b/src/components/gfx/macros.rs deleted file mode 100644 index 2edf8111732..00000000000 --- a/src/components/gfx/macros.rs +++ /dev/null @@ -1,24 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#[macro_escape]; - -macro_rules! bitfield( - ($bitfieldname:ident, $getter:ident, $setter:ident, $value:expr) => ( - impl $bitfieldname { - #[inline] - pub fn $getter(self) -> bool { - let $bitfieldname(this) = self; - (this & $value) != 0 - } - - #[inline] - pub fn $setter(&mut self, value: bool) { - let $bitfieldname(this) = *self; - *self = $bitfieldname((this & !$value) | (if value { $value } else { 0 })) - } - } - ) -) - |