pub type VdpBitmapSurfaceGetParameters = Option<unsafe extern "C" fn(surface: VdpBitmapSurface, rgba_format: *mut VdpRGBAFormat, width: *mut u32, height: *mut u32, frequently_accessed: *mut VdpBool) -> VdpStatus>;Expand description
\brief Retrieve the parameters used to create a VdpBitmapSurface. \param[in] surface The surface’s handle. \param[out] rgba_format The format of the surface. \param[out] width The width of the surface. \param[out] height The height of the surface. \param[out] frequently_accessed The frequently_accessed state of the surface. \return VdpStatus The completion status of the operation.
Aliased Type§
pub enum VdpBitmapSurfaceGetParameters {
None,
Some(unsafe extern "C" fn(u32, *mut u32, *mut u32, *mut u32, *mut i32) -> u32),
}