Enum webrender::device::gl::ReadTarget
source · pub enum ReadTarget {
Default,
Texture {
fbo_id: FBOId,
},
External {
fbo: FBOId,
},
NativeSurface {
fbo_id: FBOId,
offset: DeviceIntPoint,
},
}
Expand description
Contains the parameters necessary to bind a texture-backed read target.
Variants§
Default
Use the device’s default draw target.
Texture
Use the provided texture,
External
Use an FBO attached to an external texture.
NativeSurface
An FBO bound to a native (OS compositor) surface
Implementations§
source§impl ReadTarget
impl ReadTarget
pub fn from_texture(texture: &Texture) -> Self
fn offset(&self) -> DeviceIntPoint
Trait Implementations§
source§impl Clone for ReadTarget
impl Clone for ReadTarget
source§fn clone(&self) -> ReadTarget
fn clone(&self) -> ReadTarget
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReadTarget
impl Debug for ReadTarget
source§impl From<DrawTarget> for ReadTarget
impl From<DrawTarget> for ReadTarget
source§fn from(t: DrawTarget) -> Self
fn from(t: DrawTarget) -> Self
Converts to this type from the input type.
impl Copy for ReadTarget
Auto Trait Implementations§
impl Freeze for ReadTarget
impl RefUnwindSafe for ReadTarget
impl Send for ReadTarget
impl Sync for ReadTarget
impl Unpin for ReadTarget
impl UnwindSafe for ReadTarget
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more