Struct rust_libretro_sys::retro_framebuffer
source · [−]#[repr(C)]pub struct retro_framebuffer {
pub data: *mut c_void,
pub width: c_uint,
pub height: c_uint,
pub pitch: size_t,
pub format: retro_pixel_format,
pub access_flags: c_uint,
pub memory_flags: c_uint,
}Expand description
The memory in data is cached. If not cached, random writes and/or reading from the buffer is expected to be very slow.
Fields
data: *mut c_voidThe framebuffer which the core can render into. Set by frontend in GET_CURRENT_SOFTWARE_FRAMEBUFFER. The initial contents of data are unspecified.
width: c_uintThe framebuffer width used by the core. Set by core.
height: c_uintThe framebuffer height used by the core. Set by core.
pitch: size_tThe number of bytes between the beginning of a scanline, and beginning of the next scanline. Set by frontend in GET_CURRENT_SOFTWARE_FRAMEBUFFER.
format: retro_pixel_formatThe pixel format the core must use to render into data. This format could differ from the format used in SET_PIXEL_FORMAT. Set by frontend in GET_CURRENT_SOFTWARE_FRAMEBUFFER.
access_flags: c_uintHow the core will access the memory in the framebuffer. RETRO_MEMORY_ACCESS_* flags. Set by core.
memory_flags: c_uintFlags telling core how the memory has been mapped. RETRO_MEMORY_TYPE_* flags. Set by frontend in GET_CURRENT_SOFTWARE_FRAMEBUFFER.
Trait Implementations
sourceimpl Clone for retro_framebuffer
impl Clone for retro_framebuffer
sourcefn clone(&self) -> retro_framebuffer
fn clone(&self) -> retro_framebuffer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for retro_framebuffer
impl Debug for retro_framebuffer
impl Copy for retro_framebuffer
Auto Trait Implementations
impl RefUnwindSafe for retro_framebuffer
impl !Send for retro_framebuffer
impl !Sync for retro_framebuffer
impl Unpin for retro_framebuffer
impl UnwindSafe for retro_framebuffer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
