2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-03-27 03:43:32 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGFEMorphologyElement.h"
|
2013-03-27 03:43:33 +04:00
|
|
|
#include "mozilla/dom/SVGFEMorphologyElementBinding.h"
|
|
|
|
#include "nsSVGFilterInstance.h"
|
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEMorphology)
|
2013-03-27 03:43:32 +04:00
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-27 03:43:32 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
SVGFEMorphologyElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-03-27 03:43:33 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return SVGFEMorphologyElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-27 03:43:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::NumberPairInfo SVGFEMorphologyElement::sNumberPairInfo[1] =
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::radius, 0, 0 }
|
|
|
|
};
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
nsSVGEnumMapping SVGFEMorphologyElement::sOperatorMap[] = {
|
|
|
|
{&nsGkAtoms::erode, SVG_OPERATOR_ERODE},
|
|
|
|
{&nsGkAtoms::dilate, SVG_OPERATOR_DILATE},
|
2013-03-27 03:43:32 +04:00
|
|
|
{nullptr, 0}
|
|
|
|
};
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
nsSVGElement::EnumInfo SVGFEMorphologyElement::sEnumInfo[1] =
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::_operator,
|
|
|
|
sOperatorMap,
|
2013-03-27 03:43:33 +04:00
|
|
|
SVG_OPERATOR_ERODE
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
nsSVGElement::StringInfo SVGFEMorphologyElement::sStringInfo[2] =
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::result, kNameSpaceID_None, true },
|
|
|
|
{ &nsGkAtoms::in, kNameSpaceID_None, true }
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEMorphologyElement)
|
2013-03-27 03:43:32 +04:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2013-03-27 03:43:33 +04:00
|
|
|
// SVGFEMorphologyElement methods
|
2013-03-27 03:43:32 +04:00
|
|
|
|
2013-06-15 02:37:27 +04:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::In1()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
2013-03-27 03:43:33 +04:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 11:02:46 +04:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration>
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::Operator()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
2013-03-27 03:43:33 +04:00
|
|
|
return mEnumAttributes[OPERATOR].ToDOMAnimatedEnum(this);
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 11:03:04 +04:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::RadiusX()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
2013-03-27 03:43:33 +04:00
|
|
|
return mNumberPairAttributes[RADIUS].ToDOMAnimatedNumber(nsSVGNumberPair::eFirst, this);
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 11:03:04 +04:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::RadiusY()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
2013-03-27 03:43:33 +04:00
|
|
|
return mNumberPairAttributes[RADIUS].ToDOMAnimatedNumber(nsSVGNumberPair::eSecond, this);
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
|
2013-03-27 03:43:33 +04:00
|
|
|
void
|
|
|
|
SVGFEMorphologyElement::SetRadius(float rx, float ry)
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
mNumberPairAttributes[RADIUS].SetBaseValues(rx, ry, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MORPHOLOGY_EPSILON 0.0001
|
|
|
|
|
|
|
|
void
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::GetRXY(int32_t *aRX, int32_t *aRY,
|
|
|
|
const nsSVGFilterInstance& aInstance)
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
// Subtract an epsilon here because we don't want a value that's just
|
|
|
|
// slightly larger than an integer to round up to the next integer; it's
|
|
|
|
// probably meant to be the integer it's close to, modulo machine precision
|
|
|
|
// issues.
|
|
|
|
*aRX = NSToIntCeil(aInstance.GetPrimitiveNumber(SVGContentUtils::X,
|
|
|
|
&mNumberPairAttributes[RADIUS],
|
|
|
|
nsSVGNumberPair::eFirst) -
|
|
|
|
MORPHOLOGY_EPSILON);
|
|
|
|
*aRY = NSToIntCeil(aInstance.GetPrimitiveNumber(SVGContentUtils::Y,
|
|
|
|
&mNumberPairAttributes[RADIUS],
|
|
|
|
nsSVGNumberPair::eSecond) -
|
|
|
|
MORPHOLOGY_EPSILON);
|
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
FilterPrimitiveDescription
|
|
|
|
SVGFEMorphologyElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
|
|
|
|
const IntRect& aFilterSubregion,
|
2014-01-08 13:30:03 +04:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages)
|
2013-05-14 02:53:36 +04:00
|
|
|
{
|
|
|
|
int32_t rx, ry;
|
2013-11-27 15:25:29 +04:00
|
|
|
GetRXY(&rx, &ry, *aInstance);
|
2014-03-20 06:12:43 +04:00
|
|
|
FilterPrimitiveDescription descr(PrimitiveType::Morphology);
|
2013-11-27 15:25:29 +04:00
|
|
|
descr.Attributes().Set(eMorphologyRadii, Size(rx, ry));
|
|
|
|
descr.Attributes().Set(eMorphologyOperator,
|
|
|
|
(uint32_t)mEnumAttributes[OPERATOR].GetAnimValue());
|
|
|
|
return descr;
|
2013-03-27 03:43:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::AttributeAffectsRendering(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute) const
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
2013-03-27 03:43:33 +04:00
|
|
|
return SVGFEMorphologyElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
|
2013-03-27 03:43:32 +04:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in ||
|
|
|
|
aAttribute == nsGkAtoms::radius ||
|
|
|
|
aAttribute == nsGkAtoms::_operator));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement methods
|
|
|
|
|
|
|
|
nsSVGElement::NumberPairAttributesInfo
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::GetNumberPairInfo()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
return NumberPairAttributesInfo(mNumberPairAttributes, sNumberPairInfo,
|
|
|
|
ArrayLength(sNumberPairInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::EnumAttributesInfo
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::GetEnumInfo()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
return EnumAttributesInfo(mEnumAttributes, sEnumInfo,
|
|
|
|
ArrayLength(sEnumInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::StringAttributesInfo
|
2013-03-27 03:43:33 +04:00
|
|
|
SVGFEMorphologyElement::GetStringInfo()
|
2013-03-27 03:43:32 +04:00
|
|
|
{
|
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|