mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
blnd -> blend
This commit is contained in:
parent
aa29b52b6b
commit
c8ff3b4359
|
@ -128,8 +128,8 @@ impl Window {
|
||||||
/// Sets whether the blend is enabled inside of this window, must call
|
/// Sets whether the blend is enabled inside of this window, must call
|
||||||
/// [Windows::commit] for this change to be seen.
|
/// [Windows::commit] for this change to be seen.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_blend_enable(&mut self, blnd: bool) -> &mut Self {
|
pub fn set_blend_enable(&mut self, blend: bool) -> &mut Self {
|
||||||
self.set_bit(5, blnd);
|
self.set_bit(5, blend);
|
||||||
|
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
@ -204,8 +204,8 @@ impl MovableWindow {
|
||||||
/// Sets whether the blend is enabled inside of this window, must call
|
/// Sets whether the blend is enabled inside of this window, must call
|
||||||
/// [Windows::commit] for this change to be seen.
|
/// [Windows::commit] for this change to be seen.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_blend_enable(&mut self, blnd: bool) -> &mut Self {
|
pub fn set_blend_enable(&mut self, blend: bool) -> &mut Self {
|
||||||
self.inner.set_blend_enable(blnd);
|
self.inner.set_blend_enable(blend);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
/// Sets whether the given background will be rendered inside this window,
|
/// Sets whether the given background will be rendered inside this window,
|
||||||
|
|
Loading…
Reference in a new issue