summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Matsumura <gmmatsumura01@bvsd.org>2020-08-19 15:41:02 -0600
committerGeorge Matsumura <gmmatsumura01@bvsd.org>2020-08-25 02:30:58 -0600
commit26c7103750b3578561140b522fcc7e77ccd1ab0b (patch)
tree338e238318df8cd48c2879a08fc6ce8f60db15aa
parent20d475042cdd41603e0a0752779c6f74a7fae544 (diff)
downloadcairo-26c7103750b3578561140b522fcc7e77ccd1ab0b.tar.gz
cogl: Fix reference counting bugs
Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>
-rw-r--r--boilerplate/cairo-boilerplate-cogl.c19
-rw-r--r--src/cairo-cogl-gradient.c1
-rw-r--r--src/cairo-cogl-surface.c71
3 files changed, 68 insertions, 23 deletions
diff --git a/boilerplate/cairo-boilerplate-cogl.c b/boilerplate/cairo-boilerplate-cogl.c
index 68ee5bd5d..c293b3932 100644
--- a/boilerplate/cairo-boilerplate-cogl.c
+++ b/boilerplate/cairo-boilerplate-cogl.c
@@ -78,6 +78,9 @@ _cairo_boilerplate_cogl_create_offscreen_color_surface (const char *name,
device = cairo_cogl_device_create (context);
+ /* The device will take a reference on the context */
+ cogl_object_unref (context);
+
closure = _cairo_malloc (sizeof (cogl_closure_t));
*abstract_closure = closure;
closure->device = device;
@@ -124,19 +127,31 @@ _cairo_boilerplate_cogl_create_onscreen_color_surface (const char *name,
CoglDisplay *display;
swap_chain = cogl_swap_chain_new ();
- cogl_swap_chain_set_has_alpha (swap_chain, TRUE);
+ cogl_swap_chain_set_has_alpha (swap_chain, TRUE);
onscreen_template = cogl_onscreen_template_new (swap_chain);
renderer = cogl_renderer_new ();
display = cogl_display_new (renderer, onscreen_template);
+ /* References will be taken on the swap chain, renderer, and
+ * onscreen template by the constructors */
+ cogl_object_unref (swap_chain);
+ cogl_object_unref (renderer);
+ cogl_object_unref (onscreen_template);
+
context = cogl_context_new (display, NULL);
- } else {
+
+ /* The context will take a reference on the display */
+ cogl_object_unref (display);
+ } else {
context = cogl_context_new (NULL, NULL);
}
device = cairo_cogl_device_create (context);
+ /* The device will take a reference on the context */
+ cogl_object_unref (context);
+
closure = _cairo_malloc (sizeof (cogl_closure_t));
*abstract_closure = closure;
closure->device = device;
diff --git a/src/cairo-cogl-gradient.c b/src/cairo-cogl-gradient.c
index 4798cdddb..cdb4cae82 100644
--- a/src/cairo-cogl-gradient.c
+++ b/src/cairo-cogl-gradient.c
@@ -644,6 +644,7 @@ _cairo_cogl_get_linear_gradient (cairo_cogl_device_t *device,
}
cogl_object_unref (prim);
+ cogl_object_unref (pipeline);
cogl_object_unref (offscreen);
offscreen = NULL;
diff --git a/src/cairo-cogl-surface.c b/src/cairo-cogl-surface.c
index 62067b860..162f909e1 100644
--- a/src/cairo-cogl-surface.c
+++ b/src/cairo-cogl-surface.c
@@ -3148,8 +3148,10 @@ _cairo_cogl_surface_paint (void *abstract_surface,
op,
surface,
&extents);
- if (!pipelines[0] && !pipelines[1])
- return CAIRO_INT_STATUS_UNSUPPORTED;
+ if (!pipelines[0] && !pipelines[1]) {
+ status = CAIRO_INT_STATUS_UNSUPPORTED;
+ goto BAIL;
+ }
_cairo_cogl_maybe_log_clip (surface, &extents);
@@ -3171,7 +3173,10 @@ _cairo_cogl_surface_paint (void *abstract_surface,
extents.bounded.height,
&identity);
- return CAIRO_STATUS_SUCCESS;
+BAIL:
+ _cairo_composite_rectangles_fini (&extents);
+
+ return status;
}
static cairo_int_status_t
@@ -3206,8 +3211,10 @@ _cairo_cogl_surface_mask (void *abstract_surface,
op,
surface,
&extents);
- if (!pipelines[0] && !pipelines[1])
- return CAIRO_INT_STATUS_UNSUPPORTED;
+ if (!pipelines[0] && !pipelines[1]) {
+ status = CAIRO_INT_STATUS_UNSUPPORTED;
+ goto BAIL;
+ }
_cairo_cogl_maybe_log_clip (surface, &extents);
@@ -3229,7 +3236,10 @@ _cairo_cogl_surface_mask (void *abstract_surface,
extents.bounded.height,
&identity);
- return CAIRO_STATUS_SUCCESS;
+BAIL:
+ _cairo_composite_rectangles_fini (&extents);
+
+ return status;
}
static cairo_bool_t
@@ -3521,7 +3531,7 @@ _cairo_cogl_surface_stroke (void *abstract_surface,
/* Just render the unbounded rectangle */
prim = NULL;
} else if (unlikely (status)) {
- return status;
+ goto BAIL;
} else {
new_prim = TRUE;
}
@@ -3539,8 +3549,10 @@ _cairo_cogl_surface_stroke (void *abstract_surface,
op,
surface,
&extents);
- if (!pipelines[0] && !pipelines[1])
- return CAIRO_INT_STATUS_UNSUPPORTED;
+ if (!pipelines[0] && !pipelines[1]) {
+ status = CAIRO_INT_STATUS_UNSUPPORTED;
+ goto BAIL;
+ }
_cairo_cogl_maybe_log_clip (surface, &extents);
@@ -3554,11 +3566,15 @@ _cairo_cogl_surface_stroke (void *abstract_surface,
pipelines[1],
prim,
transform);
+
+BAIL:
/* The journal will take a reference on the primitive... */
if (new_prim)
cogl_object_unref (prim);
- return CAIRO_STATUS_SUCCESS;
+ _cairo_composite_rectangles_fini (&extents);
+
+ return status;
}
static cairo_cogl_path_fill_meta_t *
@@ -3736,7 +3752,7 @@ _cairo_cogl_surface_fill (void *abstract_surface,
/* Just render the unbounded rectangle */
prim = NULL;
} else if (unlikely (status)) {
- return status;
+ goto BAIL;
} else {
new_prim = TRUE;
}
@@ -3756,8 +3772,10 @@ _cairo_cogl_surface_fill (void *abstract_surface,
op,
surface,
&extents);
- if (!pipelines[0] && !pipelines[1])
- return CAIRO_INT_STATUS_UNSUPPORTED;
+ if (!pipelines[0] && !pipelines[1]) {
+ status = CAIRO_INT_STATUS_UNSUPPORTED;
+ goto BAIL;
+ }
_cairo_cogl_maybe_log_clip (surface, &extents);
@@ -3772,9 +3790,6 @@ _cairo_cogl_surface_fill (void *abstract_surface,
pipelines[1],
prim,
transform);
- /* The journal will take a reference on the prim */
- if (new_prim)
- cogl_object_unref (prim);
#else
CoglPath * cogl_path = _cairo_cogl_util_path_from_cairo (path, fill_rule, tolerance);
@@ -3790,7 +3805,16 @@ _cairo_cogl_surface_fill (void *abstract_surface,
cogl_object_unref (cogl_path);
#endif
- return CAIRO_STATUS_SUCCESS;
+BAIL:
+#ifndef FILL_WITH_COGL_PATH
+ /* The journal will take a reference on the prim */
+ if (new_prim)
+ cogl_object_unref (prim);
+#endif
+
+ _cairo_composite_rectangles_fini (&extents);
+
+ return status;
}
cairo_int_status_t
@@ -3830,8 +3854,10 @@ _cairo_cogl_surface_fill_rectangle (void *abstract_surface,
op,
surface,
&extents);
- if (!pipelines[0] && !pipelines[1])
- return CAIRO_INT_STATUS_UNSUPPORTED;
+ if (!pipelines[0] && !pipelines[1]) {
+ status = CAIRO_INT_STATUS_UNSUPPORTED;
+ goto BAIL;
+ }
_cairo_cogl_log_clip (surface, clip);
@@ -3846,7 +3872,10 @@ _cairo_cogl_surface_fill_rectangle (void *abstract_surface,
x, y, width, height,
ctm);
- return CAIRO_INT_STATUS_SUCCESS;
+BAIL:
+ _cairo_composite_rectangles_fini (&extents);
+
+ return status;
} else {
return CAIRO_INT_STATUS_UNSUPPORTED;
}
@@ -4185,7 +4214,7 @@ cairo_cogl_device_create (CoglContext *cogl_context)
cairo_cogl_device_t *dev = g_new (cairo_cogl_device_t, 1);
cairo_status_t status;
- dev->cogl_context = cogl_context;
+ dev->cogl_context = cogl_object_ref (cogl_context);
dev->has_npots =
cogl_has_features (cogl_context,