// cairo_operator_t cairo_get_operator (cairo_t *cr); func (self *Surface) GetOperator() Operator { return Operator(C.cairo_get_operator(self.context)) }
// GetOperator is a wrapper around cairo_get_operator(). func (v *Context) GetOperator() Operator { c := C.cairo_get_operator(v.native()) return Operator(c) }
//Operator reports the current compositing operator. // //Originally cairo_get_operator. func (c *Context) Operator() operator { return operator(C.cairo_get_operator(c.c)) }