Changeset 71360 in webkit


Ignore:
Timestamp:
Nov 4, 2010 3:38:16 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-11-04 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Adam Barth.

[EFL] Reflect latest EFL changes related to stride.
https://bugs.webkit.org/show_bug.cgi?id=48971

Remove adjustment code to compare stride of cairo_image_surfece and evas_object_image, as following changes of latest EFL.

  • ewk/ewk_util.cpp: (ewk_util_image_from_cairo_surface_add):
Location:
trunk/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/efl/ChangeLog

    r71217 r71360  
     12010-11-04  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        [EFL] Reflect latest EFL changes related to stride.
     6        https://bugs.webkit.org/show_bug.cgi?id=48971
     7
     8        Remove adjustment code to compare stride of cairo_image_surfece and evas_object_image, as following changes of latest EFL.
     9
     10        * ewk/ewk_util.cpp:
     11        (ewk_util_image_from_cairo_surface_add):
     12
    1132010-11-03  Daniel Bates  <dbates@rim.com>
    214
  • trunk/WebKit/efl/ewk/ewk_util.cpp

    r55954 r71360  
    8282    evas_object_image_alpha_set(image, format == CAIRO_FORMAT_ARGB32);
    8383
    84     if (evas_object_image_stride_get(image) * 4 != stride) {
     84    if (evas_object_image_stride_get(image) != stride) {
    8585        ERR("evas' stride %d diverges from cairo's %d.",
    86             evas_object_image_stride_get(image) * 4, stride);
     86            evas_object_image_stride_get(image), stride);
    8787        evas_object_del(image);
    8888        return 0;
Note: See TracChangeset for help on using the changeset viewer.