RESOLVED FIXED Bug 50451
[GTK] Drop GdkDrawable usage, it's been removed in GTK+3.x and we can use GdkWindow
https://bugs.webkit.org/show_bug.cgi?id=50451
Summary [GTK] Drop GdkDrawable usage, it's been removed in GTK+3.x and we can use Gdk...
Xan Lopez
Reported 2010-12-03 04:24:24 PST
SSIA
Attachments
drawable.diff (6.35 KB, patch)
2010-12-03 04:33 PST, Xan Lopez
no flags
drawable.diff (8.92 KB, patch)
2010-12-03 06:06 PST, Xan Lopez
mrobinson: review+
drawable.diff (10.36 KB, patch)
2010-12-03 09:33 PST, Xan Lopez
no flags
Xan Lopez
Comment 1 2010-12-03 04:33:05 PST
Created attachment 75488 [details] drawable.diff
Martin Robinson
Comment 2 2010-12-03 04:39:34 PST
Comment on attachment 75488 [details] drawable.diff View in context: https://bugs.webkit.org/attachment.cgi?id=75488&action=review > WebCore/platform/graphics/GraphicsContext.h:95 > #if PLATFORM(GTK) > -typedef struct _GdkDrawable GdkDrawable; > +typedef struct _GdkWindow GdkWindow; > typedef struct _GdkEventExpose GdkEventExpose; > #endif This typedef will have to be typedef struct _GdkDrawable GdkWindow for GTK+ 2.x. I guess we'll need an #ifdef. You could move these to JavaScriptCore/gobject/GTypedefs.h and do it there.
Xan Lopez
Comment 3 2010-12-03 06:06:18 PST
Created attachment 75496 [details] drawable.diff
Martin Robinson
Comment 4 2010-12-03 06:28:24 PST
Comment on attachment 75496 [details] drawable.diff Seems reasonable. Aren't there any callers for GraphicsContext::gdkWindow() ?
Build Bot
Comment 5 2010-12-03 06:50:11 PST
Eric Seidel (no email)
Comment 6 2010-12-03 08:49:47 PST
Xan Lopez
Comment 7 2010-12-03 09:33:29 PST
Created attachment 75504 [details] drawable.diff
Wouter Bolsterlee
Comment 8 2010-12-03 11:12:56 PST
GDK_DRAWABLE and some other deprecated macros and functions have been removed altogether from GTK+ 3 (git master), so without this patch Webkit doesn't compile with recent GTK+ 3.
Martin Robinson
Comment 9 2010-12-03 12:58:56 PST
Comment on attachment 75504 [details] drawable.diff View in context: https://bugs.webkit.org/attachment.cgi?id=75504&action=review I tested this patch locally with exceptional results. But unless I'm crazy, I think that the change to the comment is incorrect. > WebCore/platform/gtk/WidgetRenderingContextGtk2.cpp:91 > + // paint directly to the target window. This will not render CSS rotational transforms properly. This comment is actually correct, because m_target may either be a GdkWindow or a GdkPixmap, both of which are drawables. I don' think a pixmap is a window though.
Xan Lopez
Comment 10 2010-12-03 16:20:50 PST
(In reply to comment #9) > > WebCore/platform/gtk/WidgetRenderingContextGtk2.cpp:91 > > + // paint directly to the target window. This will not render CSS rotational transforms properly. > > This comment is actually correct, because m_target may either be a GdkWindow or a GdkPixmap, both of which are drawables. I don' think a pixmap is a window though. You are right, I was too quick with search and replace. (In reply to comment #8) > GDK_DRAWABLE and some other deprecated macros and functions have been removed altogether from GTK+ 3 (git master), so without this patch Webkit doesn't compile with recent GTK+ 3. Right again! I was just sloppy with my words, I know GdkDrawable has been removed and this patch is needed to build. I can tell because of the failed local build ;)
Xan Lopez
Comment 11 2010-12-04 06:54:21 PST
Note You need to log in before you can comment on or make changes to this bug.