/** * gjs_cairo_surface_finalize: * @context: the context * @object: object to finalize * * Destroys the resources associated with a surface wrapper. * * This is mainly used for subclasses. */ void gjs_cairo_surface_finalize_surface(JSContext *context, JSObject *object) { g_return_if_fail(context != NULL); g_return_if_fail(object != NULL); gjs_cairo_surface_finalize(context, object); }
/** * gjs_cairo_surface_finalize: * @fop: the free op * @object: object to finalize * * Destroys the resources associated with a surface wrapper. * * This is mainly used for subclasses. */ void gjs_cairo_surface_finalize_surface(JSFreeOp *fop, JSObject *object) { g_return_if_fail(fop != NULL); g_return_if_fail(object != NULL); gjs_cairo_surface_finalize(fop, object); }