Bug 1282408 - add ignore-initialization-check annotation to mSourceGraphicIndex and mSourceAlphaIndex from nsSVGFilterInstance. r=dbaron

This commit is contained in:
Paul Bignier 2016-09-15 16:41:45 +02:00
parent ca84cca424
commit 6f90f92498

View File

@ -255,16 +255,16 @@ private:
/**
* The index of the FilterPrimitiveDescription that this SVG filter should use
* as its SourceGraphic, or the SourceGraphic keyword index if this is the
* first filter in a chain.
* first filter in a chain. Initialized in BuildPrimitives
*/
int32_t mSourceGraphicIndex;
MOZ_INIT_OUTSIDE_CTOR int32_t mSourceGraphicIndex;
/**
* The index of the FilterPrimitiveDescription that this SVG filter should use
* as its SourceAlpha, or the SourceAlpha keyword index if this is the first
* filter in a chain.
* filter in a chain. Initialized in BuildPrimitives
*/
int32_t mSourceAlphaIndex;
MOZ_INIT_OUTSIDE_CTOR int32_t mSourceAlphaIndex;
/**
* SourceAlpha is available if GetOrCreateSourceAlphaIndex has been called.