Beispiel #1
0
	int lime_cairo_font_options_get_subpixel_order (value handle) {
		
		return cairo_font_options_get_subpixel_order ((cairo_font_options_t*)val_data (handle));
		
	}
Beispiel #2
0
static PyObject *
font_options_get_subpixel_order (PycairoFontOptions *o)
{
    return PyInt_FromLong (cairo_font_options_get_subpixel_order
			   (o->font_options));
}
Beispiel #3
0
	int lime_cairo_font_options_get_subpixel_order (double handle) {
		
		return cairo_font_options_get_subpixel_order ((cairo_font_options_t*)(intptr_t)handle);
		
	}
Beispiel #4
0
int32_t FontOptions::getSubPixelOrder()
{
	return static_cast<int32_t>( cairo_font_options_get_subpixel_order( mCairoFontOptions ) );
}
static VALUE
cr_options_get_subpixel_order (VALUE self)
{
  return INT2NUM (cairo_font_options_get_subpixel_order (_SELF (self)));
}
Beispiel #6
0
IoObject *IoCairoFontOptions_getSubpixelOrder(IoCairoFontOptions *self, IoObject *locals, IoMessage *m)
{
	return IONUMBER(cairo_font_options_get_subpixel_order(OPTIONS(self)));
}