forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
raster_cache_key.h
75 lines (61 loc) · 2.02 KB
/
raster_cache_key.h
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
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_FLOW_RASTER_CACHE_KEY_H_
#define FLUTTER_FLOW_RASTER_CACHE_KEY_H_
#include <unordered_map>
#include "flutter/flow/matrix_decomposition.h"
#include "lib/fxl/macros.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkPicture.h"
namespace flow {
class RasterCacheKey {
public:
RasterCacheKey(const SkPicture& picture,
#if defined(OS_FUCHSIA)
float metrics_scale_x,
float metrics_scale_y,
#endif
const MatrixDecomposition& matrix)
: picture_id_(picture.uniqueID()),
#if defined(OS_FUCHSIA)
metrics_scale_x_(metrics_scale_x),
metrics_scale_y_(metrics_scale_y),
#endif
scale_key_(
SkISize::Make(matrix.scale().x() * 1e3, matrix.scale().y() * 1e3)) {
}
uint32_t picture_id() const { return picture_id_; }
const SkISize& scale_key() const { return scale_key_; }
#if defined(OS_FUCHSIA)
float metrics_scale_x() const { return metrics_scale_x_; }
float metrics_scale_y() const { return metrics_scale_y_; }
#endif
struct Hash {
std::size_t operator()(RasterCacheKey const& key) const {
return key.picture_id_;
}
};
struct Equal {
constexpr bool operator()(const RasterCacheKey& lhs,
const RasterCacheKey& rhs) const {
return lhs.picture_id_ == rhs.picture_id_ &&
#if defined(OS_FUCHSIA)
lhs.metrics_scale_x_ == rhs.metrics_scale_x_ &&
lhs.metrics_scale_y_ == rhs.metrics_scale_y_ &&
#endif
lhs.scale_key_ == rhs.scale_key_;
}
};
template <class Value>
using Map = std::unordered_map<RasterCacheKey, Value, Hash, Equal>;
private:
uint32_t picture_id_;
#if defined(OS_FUCHSIA)
float metrics_scale_x_;
float metrics_scale_y_;
#endif
SkISize scale_key_;
};
} // namespace flow
#endif // FLUTTER_FLOW_RASTER_CACHE_KEY_H_