cssshadowvalue: Rename shadow_key to original_cr_key

shadow_key is a poor name for this, and we're going to add more user
data keys, so rename it to something more indicative of what it's used
for.
This commit is contained in:
Jasper St. Pierre
2014-08-29 17:33:27 -07:00
committed by Benjamin Otte
parent e683e915b8
commit 6556e7e08d

View File

@ -311,7 +311,7 @@ fail:
return NULL;
}
static const cairo_user_data_key_t shadow_key;
static const cairo_user_data_key_t original_cr_key;
static cairo_t *
gtk_css_shadow_value_start_drawing (const GtkCssValue *shadow,
@ -337,7 +337,7 @@ gtk_css_shadow_value_start_drawing (const GtkCssValue *shadow,
clip_rect.height + 2 * clip_radius);
cairo_surface_set_device_offset (surface, clip_radius - clip_rect.x, clip_radius - clip_rect.y);
blur_cr = cairo_create (surface);
cairo_set_user_data (blur_cr, &shadow_key, cairo_reference (cr), (cairo_destroy_func_t) cairo_destroy);
cairo_set_user_data (blur_cr, &original_cr_key, cairo_reference (cr), (cairo_destroy_func_t) cairo_destroy);
if (cairo_has_current_point (cr))
{
@ -363,7 +363,7 @@ gtk_css_shadow_value_finish_drawing (const GtkCssValue *shadow,
return cr;
surface = cairo_get_target (cr);
original_cr = cairo_get_user_data (cr, &shadow_key);
original_cr = cairo_get_user_data (cr, &original_cr_key);
/* Blur the surface. */
_gtk_cairo_blur_surface (surface, radius);