OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CC_PAINT_PAINT_SHADER_H_ | |
6 #define CC_PAINT_PAINT_SHADER_H_ | |
7 | |
8 #include "cc/paint/paint_record.h" | |
9 #include "third_party/skia/include/core/SkImage.h" | |
10 #include "third_party/skia/include/core/SkShader.h" | |
11 | |
12 namespace cc { | |
13 typedef SkShader PaintShader; | |
14 | |
15 inline sk_sp<PaintShader> WrapSkShader(sk_sp<SkShader> shader) { | |
16 return shader; | |
17 } | |
18 | |
19 inline sk_sp<PaintShader> MakePaintShaderImage(const SkImage* image, | |
20 SkShader::TileMode tx, | |
21 SkShader::TileMode ty, | |
22 const SkMatrix* local_matrix) { | |
23 return image->makeShader(tx, ty, local_matrix); | |
24 } | |
25 | |
26 inline sk_sp<PaintShader> MakePaintShaderImage(const sk_sp<SkImage> image, | |
27 SkShader::TileMode tx, | |
28 SkShader::TileMode ty, | |
29 const SkMatrix* local_matrix) { | |
30 return image->makeShader(tx, ty, local_matrix); | |
31 } | |
32 | |
33 inline sk_sp<PaintShader> MakePaintShaderPicture(sk_sp<PaintRecord> record, | |
danakj
2017/01/20 23:34:13
should this have Picture in its name or PaintRecor
enne (OOO)
2017/01/24 01:51:27
PaintShaderPicture => PaintShaderRecord.
| |
34 SkShader::TileMode tx, | |
35 SkShader::TileMode ty, | |
36 const SkMatrix* local_matrix, | |
37 const SkRect* tile) { | |
38 return SkShader::MakePictureShader(record, tx, ty, local_matrix, tile); | |
39 } | |
40 | |
41 } // namespace cc | |
42 | |
43 #endif // CC_PAINT_PAINT_SHADER_H_ | |
OLD | NEW |