Changeset 53600 in webkit


Ignore:
Timestamp:
Jan 20, 2010 8:54:46 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-20 Stephen White <senorblanco@chromium.org>

Reviewed by David Levin.

Disable the "seatbelt" coordinate validation functions in the
Skia graphics layer. We believe all the underlying bugs have
been fixed, but just in case we're being overly optimistic, this
leaves in the code for an easy revert.

https://bugs.webkit.org/show_bug.cgi?id=33908
Exercised by many layout tests.

  • platform/graphics/skia/GraphicsContextSkia.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53598 r53600  
     12010-01-20  Stephen White  <senorblanco@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        Disable the "seatbelt" coordinate validation functions in the
     6        Skia graphics layer.  We believe all the underlying bugs have
     7        been fixed, but just in case we're being overly optimistic, this
     8        leaves in the code for an easy revert.
     9
     10        https://bugs.webkit.org/show_bug.cgi?id=33908
     11        Exercised by many layout tests.
     12
     13        * platform/graphics/skia/GraphicsContextSkia.cpp:
     14
    1152010-01-20  Kent Tamura  <tkent@chromium.org>
    216
  • trunk/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp

    r52791 r53600  
    8787// have to do any checking. You can uncomment the ENSURE_VALUE_SAFETY_FOR_SKIA
    8888// flag to check the graphics layer.
    89 #define ENSURE_VALUE_SAFETY_FOR_SKIA
     89
     90// Disabling these checks (20/01/2010), since we think we've fixed all the Skia
     91// bugs.  Leaving the code in for now, so we can revert easily if necessary.
     92// #define ENSURE_VALUE_SAFETY_FOR_SKIA
    9093
    9194static bool isCoordinateSkiaSafe(float coord)
Note: See TracChangeset for help on using the changeset viewer.