Changeset 237201 in webkit


Ignore:
Timestamp:
Oct 16, 2018 1:18:06 PM (6 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r237163.

Introduced layout test failures on iOS Simulator.

Reverted changeset:

"[CG] Adopt CG SPI for non-even cornered rounded rects"
https://bugs.webkit.org/show_bug.cgi?id=190155
https://trac.webkit.org/changeset/237163

Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r237198 r237201  
     12018-10-16  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r237163.
     4
     5        Introduced layout test failures on iOS Simulator.
     6
     7        Reverted changeset:
     8
     9        "[CG] Adopt CG SPI for non-even cornered rounded rects"
     10        https://bugs.webkit.org/show_bug.cgi?id=190155
     11        https://trac.webkit.org/changeset/237163
     12
    1132018-10-16  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebCore/PAL/ChangeLog

    r237192 r237201  
     12018-10-16  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r237163.
     4
     5        Introduced layout test failures on iOS Simulator.
     6
     7        Reverted changeset:
     8
     9        "[CG] Adopt CG SPI for non-even cornered rounded rects"
     10        https://bugs.webkit.org/show_bug.cgi?id=190155
     11        https://trac.webkit.org/changeset/237163
     12
    1132018-10-16  Justin Michaud  <justin_michaud@apple.com>
    214
  • trunk/Source/WebCore/PAL/pal/spi/cg/CoreGraphicsSPI.h

    r237163 r237201  
    282282
    283283void CGContextDrawConicGradient(CGContextRef, CGGradientRef, CGPoint center, CGFloat angle);
    284 
    285 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 120000)
    286 void CGPathAddUnevenCornersRoundedRect(CGMutablePathRef, const CGAffineTransform *, CGRect, const CGSize corners[4]);
    287 #endif
    288284#endif
    289285
  • trunk/Source/WebCore/platform/graphics/cg/PathCG.cpp

    r237163 r237201  
    319319        return;
    320320    }
    321 
    322 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 120000)
    323     CGRect rectToDraw = rect;
    324     CGSize corners[4] = { topLeftRadius, topRightRadius, bottomRightRadius, bottomLeftRadius };
    325     CGPathAddUnevenCornersRoundedRect(ensurePlatformPath(), nullptr, rectToDraw, corners);
    326     return;
    327 #endif
    328321#endif
    329322
Note: See TracChangeset for help on using the changeset viewer.