2015-01-06 10:44:00 +03:00
|
|
|
/* -*- 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__
|
|
|
|
|
2016-03-29 02:37:15 +03:00
|
|
|
#include "mozilla/gfx/Point.h"
|
2015-01-06 10:44:00 +03:00
|
|
|
|
|
|
|
void
|
2015-01-12 15:36:00 +03:00
|
|
|
ComputesRGBLuminanceMask_NEON(const uint8_t *aSourceData,
|
|
|
|
int32_t aSourceStride,
|
|
|
|
uint8_t *aDestData,
|
|
|
|
int32_t aDestStride,
|
2016-03-29 02:37:15 +03:00
|
|
|
const mozilla::gfx::IntSize &aSize,
|
2015-01-06 10:44:00 +03:00
|
|
|
float aOpacity);
|
|
|
|
|
|
|
|
#endif /* __NS_SVGMASKFRAMENEON_H__ */
|