Struct sdl2_sys::SDL_Surface
source · #[repr(C)]pub struct SDL_Surface {
pub flags: Uint32,
pub format: *mut SDL_PixelFormat,
pub w: c_int,
pub h: c_int,
pub pitch: c_int,
pub pixels: *mut c_void,
pub userdata: *mut c_void,
pub locked: c_int,
pub list_blitmap: *mut c_void,
pub clip_rect: SDL_Rect,
pub map: *mut SDL_BlitMap,
pub refcount: c_int,
}
Expand description
\brief A collection of pixels used in software blitting.
\note This structure should be treated as read-only, except for \c pixels, which, if not NULL, contains the raw pixel data for the surface.
Fields§
§flags: Uint32
< Read-only
format: *mut SDL_PixelFormat
< Read-only
w: c_int
< Read-only
h: c_int
< Read-only
pitch: c_int
< Read-only
pixels: *mut c_void
< Read-write
userdata: *mut c_void
< Read-write
locked: c_int
< Read-only
list_blitmap: *mut c_void
< Private
clip_rect: SDL_Rect
< Read-only
map: *mut SDL_BlitMap
< Private
refcount: c_int
< Read-mostly
Trait Implementations§
source§impl Clone for SDL_Surface
impl Clone for SDL_Surface
source§fn clone(&self) -> SDL_Surface
fn clone(&self) -> SDL_Surface
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 moreimpl Copy for SDL_Surface
Auto Trait Implementations§
impl Freeze for SDL_Surface
impl RefUnwindSafe for SDL_Surface
impl !Send for SDL_Surface
impl !Sync for SDL_Surface
impl Unpin for SDL_Surface
impl UnwindSafe for SDL_Surface
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