OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_GFX_SKIA_UTIL_H_ | 5 #ifndef UI_GFX_SKIA_UTIL_H_ |
6 #define UI_GFX_SKIA_UTIL_H_ | 6 #define UI_GFX_SKIA_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "skia/ext/refptr.h" | 11 #include "skia/ext/refptr.h" |
12 #include "third_party/skia/include/core/SkColor.h" | 12 #include "third_party/skia/include/core/SkColor.h" |
13 #include "third_party/skia/include/core/SkRect.h" | 13 #include "third_party/skia/include/core/SkRect.h" |
14 #include "third_party/skia/include/core/SkShader.h" | 14 #include "third_party/skia/include/core/SkShader.h" |
15 #include "ui/gfx/geometry/size.h" | |
16 #include "ui/gfx/gfx_export.h" | 15 #include "ui/gfx/gfx_export.h" |
17 | 16 |
18 class SkBitmap; | 17 class SkBitmap; |
19 class SkDrawLooper; | 18 class SkDrawLooper; |
20 | 19 |
21 namespace gfx { | 20 namespace gfx { |
22 | 21 |
23 class ImageSkiaRep; | 22 class ImageSkiaRep; |
24 class Rect; | 23 class Rect; |
25 class RectF; | 24 class RectF; |
26 class ShadowValue; | 25 class ShadowValue; |
27 class Transform; | 26 class Transform; |
28 | 27 |
29 // Convert between Skia and gfx rect types. | 28 // Convert between Skia and gfx rect types. |
30 GFX_EXPORT SkRect RectToSkRect(const Rect& rect); | 29 GFX_EXPORT SkRect RectToSkRect(const Rect& rect); |
31 GFX_EXPORT SkIRect RectToSkIRect(const Rect& rect); | 30 GFX_EXPORT SkIRect RectToSkIRect(const Rect& rect); |
32 GFX_EXPORT Rect SkIRectToRect(const SkIRect& rect); | 31 GFX_EXPORT Rect SkIRectToRect(const SkIRect& rect); |
33 GFX_EXPORT SkRect RectFToSkRect(const RectF& rect); | 32 GFX_EXPORT SkRect RectFToSkRect(const RectF& rect); |
34 GFX_EXPORT RectF SkRectToRectF(const SkRect& rect); | 33 GFX_EXPORT RectF SkRectToRectF(const SkRect& rect); |
35 GFX_EXPORT SkSize SizeFToSkSize(const SizeF& size); | |
36 GFX_EXPORT SizeF SkSizeToSizeF(const SkSize& size); | |
37 | 34 |
38 GFX_EXPORT void TransformToFlattenedSkMatrix(const gfx::Transform& transform, | 35 GFX_EXPORT void TransformToFlattenedSkMatrix(const gfx::Transform& transform, |
39 SkMatrix* flattened); | 36 SkMatrix* flattened); |
40 | 37 |
41 // Creates a bitmap shader for the image rep with the image rep's scale factor. | 38 // Creates a bitmap shader for the image rep with the image rep's scale factor. |
42 // Sets the created shader's local matrix such that it displays the image rep at | 39 // Sets the created shader's local matrix such that it displays the image rep at |
43 // the correct scale factor. | 40 // the correct scale factor. |
44 // The shader's local matrix should not be changed after the shader is created. | 41 // The shader's local matrix should not be changed after the shader is created. |
45 // TODO(pkotwicz): Allow shader's local matrix to be changed after the shader | 42 // TODO(pkotwicz): Allow shader's local matrix to be changed after the shader |
46 // is created. | 43 // is created. |
(...skipping 28 matching lines...) Expand all Loading... |
75 const SkBitmap& bitmap2); | 72 const SkBitmap& bitmap2); |
76 | 73 |
77 // Converts Skia ARGB format pixels in |skia| to RGBA. | 74 // Converts Skia ARGB format pixels in |skia| to RGBA. |
78 GFX_EXPORT void ConvertSkiaToRGBA(const unsigned char* skia, | 75 GFX_EXPORT void ConvertSkiaToRGBA(const unsigned char* skia, |
79 int pixel_width, | 76 int pixel_width, |
80 unsigned char* rgba); | 77 unsigned char* rgba); |
81 | 78 |
82 } // namespace gfx | 79 } // namespace gfx |
83 | 80 |
84 #endif // UI_GFX_SKIA_UTIL_H_ | 81 #endif // UI_GFX_SKIA_UTIL_H_ |
OLD | NEW |