Changeset 93409 in webkit


Ignore:
Timestamp:
Aug 19, 2011 8:19:33 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Change condition checking logic related with both change of position and offset for backing store.
https://bugs.webkit.org/show_bug.cgi?id=66028

As backing store's position and offset change can occur at the same time,
the checking of offset change shouldn't be "else if" statement.

Patch by KwangHyuk Kim <hyuki.kim@samsung.com> on 2011-08-19
Reviewed by Adam Roben.

  • ewk/ewk_tiled_backing_store.c:

(_ewk_tiled_backing_store_smart_calculate):

Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r93401 r93409  
     12011-08-19  KwangHyuk Kim  <hyuki.kim@samsung.com>
     2
     3        [EFL] Change condition checking logic related with both change of position and offset for backing store.
     4        https://bugs.webkit.org/show_bug.cgi?id=66028
     5
     6        As backing store's position and offset change can occur at the same time,
     7        the checking of offset change shouldn't be "else if" statement.
     8
     9        Reviewed by Adam Roben.
     10
     11        * ewk/ewk_tiled_backing_store.c:
     12        (_ewk_tiled_backing_store_smart_calculate):
     13
    1142011-08-19  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
    215
  • trunk/Source/WebKit/efl/ewk/ewk_tiled_backing_store.c

    r93399 r93409  
    13301330        _ewk_tiled_backing_store_smart_calculate_pos(priv, x, y);
    13311331        priv->changed.pos = EINA_FALSE;
    1332     } else if (priv->changed.offset) {
     1332    }
     1333    if (priv->changed.offset) {
    13331334        _ewk_tiled_backing_store_smart_calculate_offset(priv, x, y);
    13341335        priv->changed.offset = EINA_FALSE;
Note: See TracChangeset for help on using the changeset viewer.