Changeset 197995 in webkit


Ignore:
Timestamp:
Mar 10, 2016 10:12:52 PM (8 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r197983): Build fails due to missing inline method

Attempt to fix the following build failure:

Undefined symbols for architecture arm64:

"JSC::GenericTypedArrayView<JSC::Uint8ClampedAdaptor>::createUninitialized(unsigned int)", referenced from:

WebCore::ImageBufferData::getData(WebCore::IntRect const&, WebCore::IntSize const&, bool, bool, float) const in ImageBufferDataCG.o

  • platform/graphics/cg/ImageBufferDataCG.cpp: Include some

headers to match FEGaussianBlur.cpp and FilterEffect.cpp.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r197993 r197995  
     12016-03-10  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r197983): Build fails due to missing inline method
     4
     5        Attempt to fix the following build failure:
     6
     7            Undefined symbols for architecture arm64:
     8              "JSC::GenericTypedArrayView<JSC::Uint8ClampedAdaptor>::createUninitialized(unsigned int)", referenced from:
     9                  WebCore::ImageBufferData::getData(WebCore::IntRect const&, WebCore::IntSize const&, bool, bool, float) const in ImageBufferDataCG.o
     10
     11        * platform/graphics/cg/ImageBufferDataCG.cpp: Include some
     12        headers to match FEGaussianBlur.cpp and FilterEffect.cpp.
     13
    1142016-03-10  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebCore/platform/graphics/cg/ImageBufferDataCG.cpp

    r188622 r197995  
    3030#include "IntRect.h"
    3131#include <CoreGraphics/CoreGraphics.h>
     32#include <runtime/JSCInlines.h>
     33#include <runtime/TypedArrayInlines.h>
     34#include <runtime/Uint8ClampedArray.h>
    3235#include <wtf/Assertions.h>
    3336
Note: See TracChangeset for help on using the changeset viewer.