Struct IDirectDrawSurface3
pub struct IDirectDrawSurface3(/* private fields */);
Implementations§
§impl IDirectDrawSurface3
impl IDirectDrawSurface3
pub unsafe fn AddAttachedSurface<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawSurface3>,
pub unsafe fn AddOverlayDirtyRect(&self, param0: *mut RECT) -> Result<()>
pub unsafe fn Blt<P1>(
&self,
param0: *mut RECT,
param1: P1,
param2: *mut RECT,
param3: u32,
param4: *mut DDBLTFX,
) -> Result<()>where
P1: Param<IDirectDrawSurface3>,
pub unsafe fn BltBatch( &self, param0: *mut DDBLTBATCH, param1: u32, param2: u32, ) -> Result<()>
pub unsafe fn BltFast<P2>(
&self,
param0: u32,
param1: u32,
param2: P2,
param3: *mut RECT,
param4: u32,
) -> Result<()>where
P2: Param<IDirectDrawSurface3>,
pub unsafe fn DeleteAttachedSurface<P1>(
&self,
param0: u32,
param1: P1,
) -> Result<()>where
P1: Param<IDirectDrawSurface3>,
pub unsafe fn EnumAttachedSurfaces( &self, param0: *mut c_void, param1: LPDDENUMSURFACESCALLBACK, ) -> Result<()>
pub unsafe fn EnumOverlayZOrders( &self, param0: u32, param1: *mut c_void, param2: LPDDENUMSURFACESCALLBACK, ) -> Result<()>
pub unsafe fn Flip<P0>(&self, param0: P0, param1: u32) -> Result<()>where
P0: Param<IDirectDrawSurface3>,
pub unsafe fn GetAttachedSurface( &self, param0: *mut DDSCAPS, param1: *mut Option<IDirectDrawSurface3>, ) -> Result<()>
pub unsafe fn GetBltStatus(&self, param0: u32) -> Result<()>
pub unsafe fn GetCaps(&self, param0: *mut DDSCAPS) -> Result<()>
pub unsafe fn GetClipper(&self) -> Result<IDirectDrawClipper>
pub unsafe fn GetColorKey( &self, param0: u32, param1: *mut DDCOLORKEY, ) -> Result<()>
pub unsafe fn GetDC(&self, param0: *mut HDC) -> Result<()>
pub unsafe fn GetFlipStatus(&self, param0: u32) -> Result<()>
pub unsafe fn GetOverlayPosition( &self, param0: *mut i32, param1: *mut i32, ) -> Result<()>
pub unsafe fn GetPalette(&self) -> Result<IDirectDrawPalette>
pub unsafe fn GetPixelFormat(&self, param0: *mut DDPIXELFORMAT) -> Result<()>
pub unsafe fn GetSurfaceDesc(&self, param0: *mut DDSURFACEDESC) -> Result<()>
pub unsafe fn Initialize<P0>(
&self,
param0: P0,
param1: *mut DDSURFACEDESC,
) -> Result<()>where
P0: Param<IDirectDraw>,
pub unsafe fn IsLost(&self) -> Result<()>
pub unsafe fn Lock( &self, param0: *mut RECT, param1: *mut DDSURFACEDESC, param2: u32, param3: HANDLE, ) -> Result<()>
pub unsafe fn ReleaseDC(&self, param0: HDC) -> Result<()>
pub unsafe fn Restore(&self) -> Result<()>
pub unsafe fn SetClipper<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawClipper>,
pub unsafe fn SetColorKey( &self, param0: u32, param1: *mut DDCOLORKEY, ) -> Result<()>
pub unsafe fn SetOverlayPosition(&self, param0: i32, param1: i32) -> Result<()>
pub unsafe fn SetPalette<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawPalette>,
pub unsafe fn Unlock(&self, param0: *mut c_void) -> Result<()>
pub unsafe fn UpdateOverlay<P1>(
&self,
param0: *mut RECT,
param1: P1,
param2: *mut RECT,
param3: u32,
param4: *mut DDOVERLAYFX,
) -> Result<()>where
P1: Param<IDirectDrawSurface3>,
pub unsafe fn UpdateOverlayDisplay(&self, param0: u32) -> Result<()>
pub unsafe fn UpdateOverlayZOrder<P1>(
&self,
param0: u32,
param1: P1,
) -> Result<()>where
P1: Param<IDirectDrawSurface3>,
pub unsafe fn GetDDInterface(&self, param0: *mut *mut c_void) -> Result<()>
pub unsafe fn PageLock(&self, param0: u32) -> Result<()>
pub unsafe fn PageUnlock(&self, param0: u32) -> Result<()>
pub unsafe fn SetSurfaceDesc( &self, param0: *mut DDSURFACEDESC, param1: u32, ) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IDirectDrawSurface3
impl CanInto<IUnknown> for IDirectDrawSurface3
§impl Clone for IDirectDrawSurface3
impl Clone for IDirectDrawSurface3
§fn clone(&self) -> IDirectDrawSurface3
fn clone(&self) -> IDirectDrawSurface3
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 more§impl Debug for IDirectDrawSurface3
impl Debug for IDirectDrawSurface3
§impl From<&IDirectDrawSurface3> for &IUnknown
impl From<&IDirectDrawSurface3> for &IUnknown
§fn from(value: &IDirectDrawSurface3) -> Self
fn from(value: &IDirectDrawSurface3) -> Self
Converts to this type from the input type.
§impl From<IDirectDrawSurface3> for IUnknown
impl From<IDirectDrawSurface3> for IUnknown
§fn from(value: IDirectDrawSurface3) -> Self
fn from(value: IDirectDrawSurface3) -> Self
Converts to this type from the input type.
§impl Interface for IDirectDrawSurface3
impl Interface for IDirectDrawSurface3
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IDirectDrawSurface3
impl PartialEq for IDirectDrawSurface3
impl Eq for IDirectDrawSurface3
impl StructuralPartialEq for IDirectDrawSurface3
Auto Trait Implementations§
impl Freeze for IDirectDrawSurface3
impl RefUnwindSafe for IDirectDrawSurface3
impl !Send for IDirectDrawSurface3
impl !Sync for IDirectDrawSurface3
impl Unpin for IDirectDrawSurface3
impl UnwindSafe for IDirectDrawSurface3
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