Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: ui/gfx/skia_util.h

Issue 23498059: Remove last dependencies on ui/base from ui/gfx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: last rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/skbitmap_operations.h ('k') | ui/gfx/skia_utils_gtk.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/gfx_export.h" 15 #include "ui/gfx/gfx_export.h"
16 16
17 class SkBitmap; 17 class SkBitmap;
18 class SkDrawLooper; 18 class SkDrawLooper;
19 19
20 namespace gfx { 20 namespace gfx {
21 21
22 class ImageSkiaRep; 22 class ImageSkiaRep;
23 class Rect; 23 class Rect;
24 class RectF; 24 class RectF;
25 class ShadowValue; 25 class ShadowValue;
26 class Transform; 26 class Transform;
27 27
28 // Convert between Skia and gfx rect types. 28 // Convert between Skia and gfx rect types.
29 UI_EXPORT SkRect RectToSkRect(const Rect& rect); 29 GFX_EXPORT SkRect RectToSkRect(const Rect& rect);
30 UI_EXPORT SkIRect RectToSkIRect(const Rect& rect); 30 GFX_EXPORT SkIRect RectToSkIRect(const Rect& rect);
31 UI_EXPORT Rect SkIRectToRect(const SkIRect& rect); 31 GFX_EXPORT Rect SkIRectToRect(const SkIRect& rect);
32 UI_EXPORT SkRect RectFToSkRect(const RectF& rect); 32 GFX_EXPORT SkRect RectFToSkRect(const RectF& rect);
33 UI_EXPORT RectF SkRectToRectF(const SkRect& rect); 33 GFX_EXPORT RectF SkRectToRectF(const SkRect& rect);
34 34
35 UI_EXPORT void TransformToFlattenedSkMatrix(const gfx::Transform& transform, 35 GFX_EXPORT void TransformToFlattenedSkMatrix(const gfx::Transform& transform,
36 SkMatrix* flattened); 36 SkMatrix* flattened);
37 37
38 // 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.
39 // 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
40 // the correct scale factor. 40 // the correct scale factor.
41 // 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.
42 // 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
43 // is created. 43 // is created.
44 // 44 //
45 UI_EXPORT skia::RefPtr<SkShader> CreateImageRepShader( 45 GFX_EXPORT skia::RefPtr<SkShader> CreateImageRepShader(
46 const gfx::ImageSkiaRep& image_rep, 46 const gfx::ImageSkiaRep& image_rep,
47 SkShader::TileMode tile_mode, 47 SkShader::TileMode tile_mode,
48 const SkMatrix& local_matrix); 48 const SkMatrix& local_matrix);
49 49
50 // Creates a vertical gradient shader. The caller owns the shader. 50 // Creates a vertical gradient shader. The caller owns the shader.
51 // Example usage to avoid leaks: 51 // Example usage to avoid leaks:
52 UI_EXPORT skia::RefPtr<SkShader> CreateGradientShader(int start_point, 52 GFX_EXPORT skia::RefPtr<SkShader> CreateGradientShader(int start_point,
53 int end_point, 53 int end_point,
54 SkColor start_color, 54 SkColor start_color,
55 SkColor end_color); 55 SkColor end_color);
56 56
57 // Creates a draw looper to generate |shadows|. The caller owns the draw looper. 57 // Creates a draw looper to generate |shadows|. The caller owns the draw looper.
58 // NULL is returned if |shadows| is empty since no draw looper is needed in 58 // NULL is returned if |shadows| is empty since no draw looper is needed in
59 // this case. 59 // this case.
60 UI_EXPORT skia::RefPtr<SkDrawLooper> CreateShadowDrawLooper( 60 GFX_EXPORT skia::RefPtr<SkDrawLooper> CreateShadowDrawLooper(
61 const std::vector<ShadowValue>& shadows); 61 const std::vector<ShadowValue>& shadows);
62 62
63 // Returns true if the two bitmaps contain the same pixels. 63 // Returns true if the two bitmaps contain the same pixels.
64 UI_EXPORT bool BitmapsAreEqual(const SkBitmap& bitmap1, 64 GFX_EXPORT bool BitmapsAreEqual(const SkBitmap& bitmap1,
65 const SkBitmap& bitmap2); 65 const SkBitmap& bitmap2);
66 66
67 // Converts Skia ARGB format pixels in |skia| to RGBA. 67 // Converts Skia ARGB format pixels in |skia| to RGBA.
68 UI_EXPORT void ConvertSkiaToRGBA(const unsigned char* skia, 68 GFX_EXPORT void ConvertSkiaToRGBA(const unsigned char* skia,
69 int pixel_width, 69 int pixel_width,
70 unsigned char* rgba); 70 unsigned char* rgba);
71 71
72 } // namespace gfx 72 } // namespace gfx
73 73
74 #endif // UI_GFX_SKIA_UTIL_H_ 74 #endif // UI_GFX_SKIA_UTIL_H_
OLDNEW
« no previous file with comments | « ui/gfx/skbitmap_operations.h ('k') | ui/gfx/skia_utils_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698