Bug 1263789 - Stop nsSVGMaskFrameNEON.h from polluting the global namespace. r=dholbert

This commit is contained in:
Jonathan Watt 2016-03-29 00:37:15 +01:00
Родитель 3a3ceffce3
Коммит 6479311100
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -7,6 +7,8 @@
#include "nsSVGMaskFrame.h"
#include <arm_neon.h>
using namespace mozilla::gfx;
void
ComputesRGBLuminanceMask_NEON(const uint8_t *aSourceData,
int32_t aSourceStride,

Просмотреть файл

@ -6,16 +6,14 @@
#ifndef __NS_SVGMASKFRAMENEON_H__
#define __NS_SVGMASKFRAMENEON_H__
#include "mozilla/gfx/2D.h"
using namespace mozilla::gfx;
#include "mozilla/gfx/Point.h"
void
ComputesRGBLuminanceMask_NEON(const uint8_t *aSourceData,
int32_t aSourceStride,
uint8_t *aDestData,
int32_t aDestStride,
const IntSize &aSize,
const mozilla::gfx::IntSize &aSize,
float aOpacity);
#endif /* __NS_SVGMASKFRAMENEON_H__ */