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

Side by Side Diff: skia/ext/cdl_common.h

Issue 2523673004: [NOT FOR COMMIT] Fully replace SkCanvas uses.
Patch Set: Support Android build. Created 4 years 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
« no previous file with comments | « skia/ext/cdl_canvas.cc ('k') | skia/ext/cdl_no_draw_canvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SKIA_EXT_CDL_CONFIG_H_
9 #define SKIA_EXT_CDL_CONFIG_H_
10
11 #define CDL_ENABLED 1
12
13 #if CDL_ENABLED
14
15 class CdlAutoCanvasRestore;
16 class CdlCanvas;
17 class CdlNoDrawCanvas;
18 class CdlPassThroughCanvas;
19 class CdlPaint;
20 class CdlPicture;
21 class CdlPictureRecorder;
22 class CdlShader;
23 class CdlSurface;
24
25 #else
26
27 class SkAutoCanvasRestore;
28 typedef SkAutoCanvasRestore CdlAutoCanvasRestore;
29
30 class SkCanvas;
31 typedef SkCanvas CdlCanvas;
32
33 class SkNoDrawCanvas;
34 typedef SkNoDrawCanvas CdlNoDrawCanvas;
35
36 class CdlPassThroughCanvas;
37
38 class SkPaint;
39 typedef SkPaint CdlPaint;
40
41 class SkPicture;
42 typedef SkPicture CdlPicture;
43
44 class SkPictureRecorder;
45 typedef SkPictureRecorder CdlPictureRecorder;
46
47 class SkShader;
48 typedef SkShader CdlShader;
49
50 class SkSurface;
51 typedef SkSurface CdlSurface;
52
53 #endif
54
55 #endif // SKIA_EXT_CDL_CONFIG_H_
OLDNEW
« no previous file with comments | « skia/ext/cdl_canvas.cc ('k') | skia/ext/cdl_no_draw_canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698