46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# File 'ext/cairo/rb_cairo_quartz_surface.c', line 46
static VALUE
cr_quartz_surface_initialize (int argc, VALUE *argv, VALUE self)
{
id objc_object = nil;
CGContextRef context;
unsigned int width, height;
cairo_surface_t *surface = NULL;
cairo_format_t format = CAIRO_FORMAT_ARGB32;
VALUE arg1, arg2, arg3, rb_width, rb_height;
static VALUE rb_cOSXCGContextRef = Qnil;
rb_scan_args (argc, argv, "21", &arg1, &arg2, &arg3);
if (argc == 2)
{
rb_width = arg1;
rb_height = arg2;
}
else
{
switch (TYPE (arg1))
{
case T_NIL:
break;
case T_STRING:
case T_SYMBOL:
case T_FIXNUM:
format = RVAL2CRFORMAT (arg1);
break;
default:
if (NIL_P (rb_cOSXCGContextRef))
rb_cOSXCGContextRef =
rb_const_get (rb_const_get (rb_cObject, rb_intern ("OSX")),
rb_intern ("CGContextRef"));
if (RTEST (rb_obj_is_kind_of (arg1, rb_cOSXCGContextRef)))
{
rbobj_to_nsobj (arg1, &objc_object);
}
else
{
if (!NIL_P (rb_cairo__cFFIPointer) &&
RTEST (rb_obj_is_kind_of (arg1, rb_cairo__cFFIPointer)))
{
VALUE rb_objc_pointer;
rb_objc_pointer = rb_funcall (arg1,
rb_intern ("address"),
0);
objc_object = (id) NUM2ULONG (rb_objc_pointer);
}
else
{
rb_raise (rb_eArgError,
"invalid argument (expect "
"(width, height), "
"(format, width, height), "
"(cg_context, width, height) or "
"(ffi_pointer, width, height)): %s",
rb_cairo__inspect (rb_ary_new3 (3, arg1, arg2, arg3)));
}
}
break;
}
rb_width = arg2;
rb_height = arg3;
}
width = NUM2UINT (rb_width);
height = NUM2UINT (rb_height);
if (objc_object == nil)
{
surface = cairo_quartz_surface_create (format, width, height);
}
else
{
context = (CGContextRef)objc_object;
surface =
cairo_quartz_surface_create_for_cg_context (context, width, height);
}
rb_cairo_surface_check_status (surface);
DATA_PTR (self) = surface;
if (rb_block_given_p ())
rb_cairo__surface_yield_and_finish (self);
return Qnil;
}
|