Changeset 89287 in webkit


Ignore:
Timestamp:
Jun 20, 2011, 1:53:35 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Eric Seidel.

[GTK] [WebKit2] Disable GDK double buffering
https://bugs.webkit.org/show_bug.cgi?id=62770

Explicitly disable GDK double-buffering when instantiating
a WebKit2 view widget. This prevents one extra pixmap copy.

  • UIProcess/API/gtk/WebKitWebViewBase.cpp: (webkit_web_view_base_init):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r89256 r89287  
     12011-06-20  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [GTK] [WebKit2] Disable GDK double buffering
     6        https://bugs.webkit.org/show_bug.cgi?id=62770
     7
     8        Explicitly disable GDK double-buffering when instantiating
     9        a WebKit2 view widget. This prevents one extra pixmap copy.
     10
     11        * UIProcess/API/gtk/WebKitWebViewBase.cpp:
     12        (webkit_web_view_base_init):
     13
    1142011-06-20  Carlos Garcia Campos  <cgarcia@igalia.com>
    215
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp

    r89028 r89287  
    131131    priv->isPageActive = TRUE;
    132132
     133    gtk_widget_set_double_buffered(GTK_WIDGET(webkitWebViewBase), FALSE);
    133134    gtk_widget_set_can_focus(GTK_WIDGET(webkitWebViewBase), TRUE);
    134135    priv->imContext = gtk_im_multicontext_new();
Note: See TracChangeset for help on using the changeset viewer.