icecat: add release icecat-140.10.1-1gnu1 for ecne

This commit is contained in:
Ark74 2026-05-04 16:58:41 -06:00
parent a5f93cb214
commit ff85d7c623
1256 changed files with 63469 additions and 24141 deletions

View file

@ -42,13 +42,13 @@ SVGElement::BooleanInfo SVGFEConvolveMatrixElement::sBooleanInfo[1] = {
{nsGkAtoms::preserveAlpha, false}};
SVGEnumMapping SVGFEConvolveMatrixElement::sEdgeModeMap[] = {
{nsGkAtoms::duplicate, SVG_EDGEMODE_DUPLICATE},
{nsGkAtoms::wrap, SVG_EDGEMODE_WRAP},
{nsGkAtoms::none, SVG_EDGEMODE_NONE},
{nsGkAtoms::duplicate, uint8_t(SVGEdgeMode::Duplicate)},
{nsGkAtoms::wrap, uint8_t(SVGEdgeMode::Wrap)},
{nsGkAtoms::none, uint8_t(SVGEdgeMode::None)},
{nullptr, 0}};
SVGElement::EnumInfo SVGFEConvolveMatrixElement::sEnumInfo[1] = {
{nsGkAtoms::edgeMode, sEdgeModeMap, SVG_EDGEMODE_DUPLICATE}};
{nsGkAtoms::edgeMode, sEdgeModeMap, uint8_t(SVGEdgeMode::Duplicate)}};
SVGElement::StringInfo SVGFEConvolveMatrixElement::sStringInfo[2] = {
{nsGkAtoms::result, kNameSpaceID_None, true},
@ -174,7 +174,7 @@ FilterPrimitiveDescription SVGFEConvolveMatrixElement::GetPrimitiveDescription(
if (divisor == 0) divisor = 1;
}
uint32_t edgeMode = mEnumAttributes[EDGEMODE].GetAnimValue();
SVGEdgeMode edgeMode = SVGEdgeMode(mEnumAttributes[EDGEMODE].GetAnimValue());
bool preserveAlpha = mBooleanAttributes[PRESERVEALPHA].GetAnimValue();
float bias = mNumberAttributes[BIAS].GetAnimValue();