use std::{convert::TryFrom, fmt, ops::Deref};
use ffi::CGContextRef;
#[cfg(feature = "use_glib")]
use glib::translate::*;
use crate::{Error, Format, Surface, SurfaceType};
declare_surface!(QuartzSurface, SurfaceType::Quartz);
impl QuartzSurface {
#[doc(alias = "cairo_quartz_surface_create")]
pub fn create(format: Format, width: u32, height: u32) -> Result<QuartzSurface, Error> {
unsafe {
Self::from_raw_full(ffi::cairo_quartz_surface_create(
format.into(),
width,
height,
))
}
}
#[doc(alias = "cairo_quartz_surface_create_for_cg_context")]
pub fn create_for_cg_context(
cg_context: CGContextRef,
width: u32,
height: u32,
) -> Result<QuartzSurface, Error> {
unsafe {
Self::from_raw_full(ffi::cairo_quartz_surface_create_for_cg_context(
cg_context, width, height,
))
}
}
#[doc(alias = "cairo_quartz_surface_get_cg_context")]
#[doc(alias = "get_cg_context")]
pub fn cg_context(&self) -> CGContextRef {
unsafe { ffi::cairo_quartz_surface_get_cg_context(self.to_raw_none()) }
}
}