forked from AuroraMiddleware/gtk
gdk: Remove picture pointer from X11 drawable
It's not used anymore
This commit is contained in:
parent
c4f280651a
commit
c7bd2ad1c9
@ -147,9 +147,6 @@ struct _GdkDisplayX11
|
||||
guint have_input_shapes : 1;
|
||||
gint shape_event_base;
|
||||
|
||||
/* Alpha mask picture format */
|
||||
XRenderPictFormat *mask_format;
|
||||
|
||||
/* The offscreen window that has the pointer in it (if any) */
|
||||
GdkWindow *active_offscreen_window;
|
||||
};
|
||||
|
@ -107,13 +107,6 @@ _gdk_x11_drawable_finish (GdkDrawable *drawable)
|
||||
{
|
||||
GdkDrawableImplX11 *impl = GDK_DRAWABLE_IMPL_X11 (drawable);
|
||||
|
||||
if (impl->picture)
|
||||
{
|
||||
XRenderFreePicture (GDK_SCREEN_XDISPLAY (impl->screen),
|
||||
impl->picture);
|
||||
impl->picture = None;
|
||||
}
|
||||
|
||||
if (impl->cairo_surface)
|
||||
{
|
||||
cairo_surface_finish (impl->cairo_surface);
|
||||
|
@ -32,7 +32,6 @@
|
||||
#include <gdk/gdkdrawable.h>
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/extensions/Xrender.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@ -68,7 +67,6 @@ struct _GdkDrawableImplX11
|
||||
Window xid;
|
||||
GdkScreen *screen;
|
||||
|
||||
Picture picture;
|
||||
cairo_surface_t *cairo_surface;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user