Class: Cairo::FontFace
- Inherits:
-
Object
- Object
- Cairo::FontFace
- Defined in:
- ext/cairo/rb_cairo_font_face.c
Direct Known Subclasses
Class Method Summary collapse
Class Method Details
.quartz_supported? ⇒ Boolean
114 115 116 117 118 119 120 121 122 |
# File 'ext/cairo/rb_cairo_font_face.c', line 114 static VALUE cr_font_face_quartz_supported_p (VALUE klass) { #ifdef CAIRO_HAS_QUARTZ_FONT return Qtrue; #else return Qfalse; #endif } |