#[repr(C)]pub struct encoder_texture {
pub handle: u32,
pub tex: [*mut gs_texture; 4],
}
Expand description
Encoder input texture
Fields§
§handle: u32
Shared texture handle, only set on Windows
tex: [*mut gs_texture; 4]
Textures, length determined by format
Trait Implementations§
Source§impl Clone for encoder_texture
impl Clone for encoder_texture
Source§fn clone(&self) -> encoder_texture
fn clone(&self) -> encoder_texture
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 encoder_texture
impl Debug for encoder_texture
Source§impl Ord for encoder_texture
impl Ord for encoder_texture
Source§fn cmp(&self, other: &encoder_texture) -> Ordering
fn cmp(&self, other: &encoder_texture) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for encoder_texture
impl PartialEq for encoder_texture
Source§impl PartialOrd for encoder_texture
impl PartialOrd for encoder_texture
impl Copy for encoder_texture
impl Eq for encoder_texture
impl StructuralPartialEq for encoder_texture
Auto Trait Implementations§
impl Freeze for encoder_texture
impl RefUnwindSafe for encoder_texture
impl !Send for encoder_texture
impl !Sync for encoder_texture
impl Unpin for encoder_texture
impl UnwindSafe for encoder_texture
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