Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
thunar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
thunar
Commits
18604fad
Commit
18604fad
authored
10 years ago
by
Andrzej
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Fallback to image surface, workaround for bug in Cairo/RENDER"
This reverts commit
78a3cba2
.
parent
ff58ed28
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
thunar/thunar-icon-renderer.c
+0
-34
0 additions, 34 deletions
thunar/thunar-icon-renderer.c
with
0 additions
and
34 deletions
thunar/thunar-icon-renderer.c
+
0
−
34
View file @
18604fad
...
...
@@ -315,52 +315,18 @@ thunar_icon_renderer_color_selected (cairo_t *cr,
cairo_pattern_t
*
source
;
GtkStateType
state
;
#ifdef CAIRO_BUG_72551_FIXED
cairo_save
(
cr
);
source
=
cairo_pattern_reference
(
cairo_get_source
(
cr
));
state
=
gtk_widget_has_focus
(
widget
)
?
GTK_STATE_SELECTED
:
GTK_STATE_ACTIVE
;
gdk_cairo_set_source_color
(
cr
,
&
widget
->
style
->
base
[
state
]);
cairo_set_operator
(
cr
,
CAIRO_OPERATOR_MULTIPLY
);
cairo_mask
(
cr
,
source
);
#else
/* fallback for RENDER error */
/* CAIRO_OPERATOR_MULTIPLY */
/* causes libx11 error: error_code 2 request_code 155 minor_code 8 */
/* with x11 1.0.3, xrender 0.9.1, cairo 1.12.2 */
/* cairo_mask (cr, source); */
cairo_surface_t
*
target
,
*
image_surface
;
cairo_t
*
image_cr
;
double
x1
,
y1
,
x2
,
y2
;
cairo_save
(
cr
);
/* copy xlib surface to an image surface */
cairo_clip_extents
(
cr
,
&
x1
,
&
y1
,
&
x2
,
&
y2
);
target
=
cairo_get_target
(
cr
);
image_surface
=
cairo_image_surface_create
(
CAIRO_FORMAT_ARGB32
,
x2
,
y2
);
image_cr
=
cairo_create
(
image_surface
);
cairo_set_source_surface
(
image_cr
,
target
,
0
,
0
);
cairo_set_operator
(
image_cr
,
CAIRO_OPERATOR_SOURCE
);
cairo_paint
(
image_cr
);
/* render on the image surface */
source
=
cairo_pattern_reference
(
cairo_get_source
(
cr
));
state
=
gtk_widget_has_focus
(
widget
)
?
GTK_STATE_SELECTED
:
GTK_STATE_ACTIVE
;
gdk_cairo_set_source_color
(
image_cr
,
&
widget
->
style
->
base
[
state
]);
cairo_set_operator
(
image_cr
,
CAIRO_OPERATOR_MULTIPLY
);
cairo_mask
(
image_cr
,
source
);
/* copy the image surface back to xlib one and clean up */
cairo_set_source_surface
(
cr
,
image_surface
,
0
,
0
);
cairo_set_operator
(
cr
,
CAIRO_OPERATOR_SOURCE
);
cairo_paint
(
cr
);
cairo_destroy
(
image_cr
);
cairo_surface_destroy
(
image_surface
);
#endif
cairo_pattern_destroy
(
source
);
cairo_restore
(
cr
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment