class Cairo::FontFace
Public Class Methods
Source
static VALUE
cr_font_face_freetype_supported_p (VALUE klass)
{
#ifdef CAIRO_HAS_FT_FONT
return Qtrue;
#else
return Qfalse;
#endif
}
Source
static VALUE
cr_font_face_quartz_supported_p (VALUE klass)
{
#ifdef CAIRO_HAS_QUARTZ_FONT
return Qtrue;
#else
return Qfalse;
#endif
}