diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/svg/nsSVGMaskFrameNEON.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/svg/nsSVGMaskFrameNEON.h')
-rw-r--r-- | layout/svg/nsSVGMaskFrameNEON.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/svg/nsSVGMaskFrameNEON.h b/layout/svg/nsSVGMaskFrameNEON.h new file mode 100644 index 000000000..1da901ba7 --- /dev/null +++ b/layout/svg/nsSVGMaskFrameNEON.h @@ -0,0 +1,19 @@ +/* -*- mode: c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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/. */ + +#ifndef __NS_SVGMASKFRAMENEON_H__ +#define __NS_SVGMASKFRAMENEON_H__ + +#include "mozilla/gfx/Point.h" + +void +ComputesRGBLuminanceMask_NEON(const uint8_t *aSourceData, + int32_t aSourceStride, + uint8_t *aDestData, + int32_t aDestStride, + const mozilla::gfx::IntSize &aSize, + float aOpacity); + +#endif /* __NS_SVGMASKFRAMENEON_H__ */ |