Changeset 206225 in webkit


Ignore:
Timestamp:
Sep 21, 2016 11:42:21 AM (8 years ago)
Author:
Gustavo Noronha Silva
Message:

Merge 206216 - Unreviewed, build fix.

  • UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:

(WebKit::AcceleratedBackingStoreWayland::paint): fix usage of deviceScaleFactor variable which was
removed.

Location:
releases/WebKitGTK/webkit-2.14/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog

    r206142 r206225  
     12016-09-21  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        Unreviewed, build fix.
     4
     5        * UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:
     6        (WebKit::AcceleratedBackingStoreWayland::paint): fix usage of deviceScaleFactor variable which was
     7        removed.
     8
    192016-09-20  Carlos Garcia Campos  <cgarcia@igalia.com>
    210
  • releases/WebKitGTK/webkit-2.14/Source/WebKit2/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp

    r206089 r206225  
    118118    // The compositor renders the texture flipped for gdk_cairo_draw_from_gl, fix that here.
    119119    cairo_matrix_t transform;
    120     cairo_matrix_init(&transform, 1, 0, 0, -1, 0, textureSize.height() / deviceScaleFactor);
     120    cairo_matrix_init(&transform, 1, 0, 0, -1, 0, textureSize.height() / m_webPage.deviceScaleFactor());
    121121    cairo_transform(cr, &transform);
    122122
Note: See TracChangeset for help on using the changeset viewer.