1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 _MOZILLA_GFX_IMAGESCALING_H
#define _MOZILLA_GFX_IMAGESCALING_H
#include "Types.h"
#include <vector>
#include "Point.h"
namespace mozilla {
namespace gfx {
class ImageHalfScaler {
public:
ImageHalfScaler(uint8_t* aData, int32_t aStride, const IntSize& aSize)
: mOrigData(aData),
mOrigStride(aStride),
mOrigSize(aSize),
mDataStorage(nullptr),
mData(nullptr),
mStride(0) {}
~ImageHalfScaler() { delete[] mDataStorage; }
void ScaleForSize(const IntSize& aSize);
uint8_t* GetScaledData() const { return mData; }
IntSize GetSize() const { return mSize; }
uint32_t GetStride() const { return mStride; }
private:
void HalfImage2D(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageVertical(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageHorizontal(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
// This is our SSE2 scaling function. Our destination must always be 16-byte
// aligned and use a 16-byte aligned stride.
void HalfImage2D_SSE2(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageVertical_SSE2(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageHorizontal_SSE2(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImage2D_C(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageVertical_C(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
void HalfImageHorizontal_C(uint8_t* aSource, int32_t aSourceStride,
const IntSize& aSourceSize, uint8_t* aDest,
uint32_t aDestStride);
uint8_t* mOrigData;
int32_t mOrigStride;
IntSize mOrigSize;
uint8_t* mDataStorage;
// Guaranteed 16-byte aligned
uint8_t* mData;
IntSize mSize;
// Guaranteed 16-byte aligned
uint32_t mStride;
};
} // namespace gfx
} // namespace mozilla
#endif
|