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:

committed by
Benjamin Otte

parent
e683e915b8
commit
6556e7e08d
@ -311,7 +311,7 @@ fail:
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const cairo_user_data_key_t shadow_key;
|
static const cairo_user_data_key_t original_cr_key;
|
||||||
|
|
||||||
static cairo_t *
|
static cairo_t *
|
||||||
gtk_css_shadow_value_start_drawing (const GtkCssValue *shadow,
|
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);
|
clip_rect.height + 2 * clip_radius);
|
||||||
cairo_surface_set_device_offset (surface, clip_radius - clip_rect.x, clip_radius - clip_rect.y);
|
cairo_surface_set_device_offset (surface, clip_radius - clip_rect.x, clip_radius - clip_rect.y);
|
||||||
blur_cr = cairo_create (surface);
|
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))
|
if (cairo_has_current_point (cr))
|
||||||
{
|
{
|
||||||
@ -363,7 +363,7 @@ gtk_css_shadow_value_finish_drawing (const GtkCssValue *shadow,
|
|||||||
return cr;
|
return cr;
|
||||||
|
|
||||||
surface = cairo_get_target (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. */
|
/* Blur the surface. */
|
||||||
_gtk_cairo_blur_surface (surface, radius);
|
_gtk_cairo_blur_surface (surface, radius);
|
||||||
|
Reference in New Issue
Block a user