VdpPresentationQueueCreate

Type Alias VdpPresentationQueueCreate 

Source
pub type VdpPresentationQueueCreate = Option<unsafe extern "C" fn(device: VdpDevice, presentation_queue_target: VdpPresentationQueueTarget, presentation_queue: *mut VdpPresentationQueue) -> VdpStatus>;
Expand description

\brief Create a VdpPresentationQueue. \param[in] device The device that will contain the queue. \param[in] presentation_queue_target The location to display the content. \param[out] presentation_queue The new queue’s handle. \return VdpStatus The completion status of the operation.

Note: The initial value for the background color will be set to an implementation-defined value.

Aliased Type§

pub enum VdpPresentationQueueCreate {
    None,
    Some(unsafe extern "C" fn(u32, u32, *mut u32) -> u32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(u32, u32, *mut u32) -> u32)

Some value of type T.