OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CANVAS_DIRECT2D_H_ | 5 #ifndef UI_GFX_CANVAS_DIRECT2D_H_ |
6 #define UI_GFX_CANVAS_DIRECT2D_H_ | 6 #define UI_GFX_CANVAS_DIRECT2D_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <d2d1.h> | 9 #include <d2d1.h> |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 // Overridden from Canvas: | 28 // Overridden from Canvas: |
29 virtual void Save() OVERRIDE; | 29 virtual void Save() OVERRIDE; |
30 virtual void SaveLayerAlpha(uint8 alpha) OVERRIDE; | 30 virtual void SaveLayerAlpha(uint8 alpha) OVERRIDE; |
31 virtual void SaveLayerAlpha(uint8 alpha, | 31 virtual void SaveLayerAlpha(uint8 alpha, |
32 const gfx::Rect& layer_bounds) OVERRIDE; | 32 const gfx::Rect& layer_bounds) OVERRIDE; |
33 virtual void Restore() OVERRIDE; | 33 virtual void Restore() OVERRIDE; |
34 virtual bool ClipRect(const gfx::Rect& rect) OVERRIDE; | 34 virtual bool ClipRect(const gfx::Rect& rect) OVERRIDE; |
35 virtual void Translate(const gfx::Point& point) OVERRIDE; | 35 virtual void Translate(const gfx::Point& point) OVERRIDE; |
36 virtual void Scale(int x_scale, int y_scale) OVERRIDE; | 36 virtual void Scale(int x_scale, int y_scale) OVERRIDE; |
37 virtual void FillRectInt(const SkColor& color, | 37 virtual void FillRect(const SkColor& color, const gfx::Rect& rect) OVERRIDE; |
38 int x, int y, int w, int h) OVERRIDE; | 38 virtual void FillRect(const SkColor& color, |
39 virtual void FillRectInt(const SkColor& color, | 39 const gfx::Rect& rect, |
40 int x, int y, int w, int h, | 40 SkXfermode::Mode mode) OVERRIDE; |
41 SkXfermode::Mode mode) OVERRIDE; | 41 virtual void FillRect(const gfx::Brush* brush, |
42 virtual void FillRectInt(const gfx::Brush* brush, | 42 const gfx::Rect& rect) OVERRIDE; |
43 int x, int y, int w, int h) OVERRIDE; | |
44 virtual void DrawRectInt(const SkColor& color, | 43 virtual void DrawRectInt(const SkColor& color, |
45 int x, int y, int w, int h) OVERRIDE; | 44 int x, int y, int w, int h) OVERRIDE; |
46 virtual void DrawRectInt(const SkColor& color, | 45 virtual void DrawRectInt(const SkColor& color, |
47 int x, int y, int w, int h, | 46 int x, int y, int w, int h, |
48 SkXfermode::Mode mode) OVERRIDE; | 47 SkXfermode::Mode mode) OVERRIDE; |
49 virtual void DrawRectInt(int x, int y, int w, int h, | 48 virtual void DrawRectInt(int x, int y, int w, int h, |
50 const SkPaint& paint) OVERRIDE; | 49 const SkPaint& paint) OVERRIDE; |
51 virtual void DrawLineInt(const SkColor& color, | 50 virtual void DrawLineInt(const SkColor& color, |
52 int x1, int y1, | 51 int x1, int y1, |
53 int x2, int y2) OVERRIDE; | 52 int x2, int y2) OVERRIDE; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 int clip_count; | 112 int clip_count; |
114 }; | 113 }; |
115 std::stack<RenderState> state_; | 114 std::stack<RenderState> state_; |
116 | 115 |
117 DISALLOW_COPY_AND_ASSIGN(CanvasDirect2D); | 116 DISALLOW_COPY_AND_ASSIGN(CanvasDirect2D); |
118 }; | 117 }; |
119 | 118 |
120 } // namespace gfx | 119 } // namespace gfx |
121 | 120 |
122 #endif // UI_GFX_CANVAS_DIRECT2D_H_ | 121 #endif // UI_GFX_CANVAS_DIRECT2D_H_ |
OLD | NEW |