⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 269762 in webkit


Ignore:
Timestamp:
Nov 12, 2020, 7:15:44 PM (6 years ago)
Author:
jh718.park@samsung.com
Message:

Unreviewed. Fix the build warning below since r269753.
warning: unused parameter ‘spacing’ [-Wunused-parameter]

No new tests, no new behaviors.

  • platform/graphics/cairo/GraphicsContextCairo.cpp:

(WebCore::GraphicsContext::drawPlatformPattern):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r269760 r269762  
     12020-11-12  Joonghun Park  <jh718.park@samsung.com>
     2
     3        Unreviewed. Fix the build warning below since r269753.
     4        warning: unused parameter ‘spacing’ [-Wunused-parameter]
     5
     6        No new tests, no new behaviors.
     7
     8        * platform/graphics/cairo/GraphicsContextCairo.cpp:
     9        (WebCore::GraphicsContext::drawPlatformPattern):
     10
    1112020-11-12  Sam Weinig  <weinig@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp

    r269753 r269762  
    662662
    663663    ASSERT(hasPlatformContext());
     664    UNUSED_PARAM(spacing);
    664665    Cairo::drawPattern(*platformContext(), image.get(), IntSize(imageSize), destRect, tileRect, patternTransform, phase, options);
    665666}
Note: See TracChangeset for help on using the changeset viewer.