IWICDevelopRaw

Struct IWICDevelopRaw 

Source
#[repr(C)]
pub struct IWICDevelopRaw { pub lpVtbl: *const IWICDevelopRawVtbl, }

Fields§

§lpVtbl: *const IWICDevelopRawVtbl

Implementations§

Source§

impl IWICDevelopRaw

Source

pub unsafe fn QueryRawCapabilitiesInfo( &self, pInfo: *mut WICRawCapabilitiesInfo, ) -> HRESULT

Source

pub unsafe fn LoadParameterSet( &self, ParameterSet: WICRawParameterSet, ) -> HRESULT

Source

pub unsafe fn GetCurrentParameterSet( &self, ppCurrentParameterSet: *mut *mut IPropertyBag2, ) -> HRESULT

Source

pub unsafe fn SetExposureCompensation(&self, ev: c_double) -> HRESULT

Source

pub unsafe fn GetExposureCompensation(&self, pEV: *mut c_double) -> HRESULT

Source

pub unsafe fn SetWhitePointRGB( &self, Red: UINT, Green: UINT, Blue: UINT, ) -> HRESULT

Source

pub unsafe fn GetWhitePointRGB( &self, pRed: *mut UINT, pGreen: *mut UINT, pBlue: *mut UINT, ) -> HRESULT

Source

pub unsafe fn SetNamedWhitePoint( &self, WhitePoint: WICNamedWhitePoint, ) -> HRESULT

Source

pub unsafe fn GetNamedWhitePoint( &self, pWhitePoint: *mut WICNamedWhitePoint, ) -> HRESULT

Source

pub unsafe fn SetWhitePointKelvin(&self, WhitePointKelvin: UINT) -> HRESULT

Source

pub unsafe fn GetWhitePointKelvin( &self, pWhitePointKelvin: *mut UINT, ) -> HRESULT

Source

pub unsafe fn GetKelvinRangeInfo( &self, pMinKelvinTemp: *mut UINT, pMaxKelvinTemp: *mut UINT, pKelvinTempStepValue: *mut UINT, ) -> HRESULT

Source

pub unsafe fn SetContrast(&self, Contrast: c_double) -> HRESULT

Source

pub unsafe fn GetContrast(&self, pContrast: *mut c_double) -> HRESULT

Source

pub unsafe fn SetGamma(&self, Gamma: c_double) -> HRESULT

Source

pub unsafe fn GetGamma(&self, pGamma: *mut c_double) -> HRESULT

Source

pub unsafe fn SetSharpness(&self, Sharpness: c_double) -> HRESULT

Source

pub unsafe fn GetSharpness(&self, pSharpness: *mut c_double) -> HRESULT

Source

pub unsafe fn SetSaturation(&self, Saturation: c_double) -> HRESULT

Source

pub unsafe fn GetSaturation(&self, pSaturation: *mut c_double) -> HRESULT

Source

pub unsafe fn SetTint(&self, Tint: c_double) -> HRESULT

Source

pub unsafe fn GetTint(&self, pTint: *mut c_double) -> HRESULT

Source

pub unsafe fn SetNoiseReduction(&self, NoiseReduction: c_double) -> HRESULT

Source

pub unsafe fn GetNoiseReduction( &self, pNoiseReduction: *mut c_double, ) -> HRESULT

Source

pub unsafe fn SetDestinationColorContext( &self, pColorContext: *const IWICColorContext, ) -> HRESULT

Source

pub unsafe fn SetToneCurve( &self, cbToneCurveSize: UINT, pToneCurve: *const WICRawToneCurve, ) -> HRESULT

Source

pub unsafe fn GetToneCurve( &self, cbToneCurveBufferSize: UINT, pToneCurve: *mut WICRawToneCurve, pcbActualToneCurveBufferSize: *mut UINT, ) -> HRESULT

Source

pub unsafe fn SetRotation(&self, Rotation: c_double) -> HRESULT

Source

pub unsafe fn GetRotation(&self, pRotation: *mut c_double) -> HRESULT

Source

pub unsafe fn SetRenderMode(&self, RenderMode: WICRawRenderMode) -> HRESULT

Source

pub unsafe fn GetRenderMode( &self, pRenderMode: *mut WICRawRenderMode, ) -> HRESULT

Source

pub unsafe fn SetNotificationCallback( &self, pCallback: *const IWICDevelopRawNotificationCallback, ) -> HRESULT

Methods from Deref<Target = IWICBitmapFrameDecode>§

Source

pub unsafe fn GetMetadataQueryReader( &self, ppIMetadataQueryReader: *mut *mut IWICMetadataQueryReader, ) -> HRESULT

Source

pub unsafe fn GetColorContexts( &self, cCount: UINT, ppIColorContexts: *mut *mut IWICColorContext, pcActualCount: *mut UINT, ) -> HRESULT

Source

pub unsafe fn GetThumbnail( &self, ppIThumbnail: *mut *mut IWICBitmapSource, ) -> HRESULT

Methods from Deref<Target = IWICBitmapSource>§

Source

pub unsafe fn GetSize( &self, puiWidth: *mut UINT, puiHeight: *mut UINT, ) -> HRESULT

Source

pub unsafe fn GetPixelFormat( &self, pPixelFormat: *mut WICPixelFormatGUID, ) -> HRESULT

Source

pub unsafe fn GetResolution( &self, pDpiX: *mut c_double, pDpiY: *mut c_double, ) -> HRESULT

Source

pub unsafe fn CopyPalette(&self, pIPalette: *mut IWICPalette) -> HRESULT

Source

pub unsafe fn CopyPixels( &self, prc: *const WICRect, cbStride: UINT, cbBufferSize: UINT, pbBuffer: *mut BYTE, ) -> HRESULT

Methods from Deref<Target = IUnknown>§

Source

pub unsafe fn QueryInterface( &self, riid: REFIID, ppvObject: *mut *mut c_void, ) -> HRESULT

Source

pub unsafe fn AddRef(&self) -> ULONG

Source

pub unsafe fn Release(&self) -> ULONG

Trait Implementations§

Source§

impl Deref for IWICDevelopRaw

Source§

type Target = IWICBitmapFrameDecode

The resulting type after dereferencing.
Source§

fn deref(&self) -> &IWICBitmapFrameDecode

Dereferences the value.
Source§

impl Interface for IWICDevelopRaw

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.