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

Side by Side Diff: include/c/sk_types.h

Issue 822053002: add maskfilter to c api (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 | « include/c/sk_paint.h ('k') | src/c/sk_surface.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 // EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL 8 // EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL
9 // DO NOT USE -- FOR INTERNAL TESTING ONLY 9 // DO NOT USE -- FOR INTERNAL TESTING ONLY
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 float right; 73 float right;
74 float bottom; 74 float bottom;
75 } sk_rect_t; 75 } sk_rect_t;
76 76
77 typedef struct { 77 typedef struct {
78 float mat[9]; 78 float mat[9];
79 } sk_matrix_t; 79 } sk_matrix_t;
80 80
81 typedef struct sk_canvas_t sk_canvas_t; 81 typedef struct sk_canvas_t sk_canvas_t;
82 typedef struct sk_image_t sk_image_t; 82 typedef struct sk_image_t sk_image_t;
83 typedef struct sk_maskfilter_t sk_maskfilter_t;
83 typedef struct sk_paint_t sk_paint_t; 84 typedef struct sk_paint_t sk_paint_t;
84 typedef struct sk_picture_t sk_picture_t; 85 typedef struct sk_picture_t sk_picture_t;
85 typedef struct sk_picture_recorder_t sk_picture_recorder_t; 86 typedef struct sk_picture_recorder_t sk_picture_recorder_t;
86 typedef struct sk_path_t sk_path_t; 87 typedef struct sk_path_t sk_path_t;
87 typedef struct sk_shader_t sk_shader_t; 88 typedef struct sk_shader_t sk_shader_t;
88 typedef struct sk_surface_t sk_surface_t; 89 typedef struct sk_surface_t sk_surface_t;
89 90
90 //////////////////////////////////////////////////////////////////////////////// ////////// 91 //////////////////////////////////////////////////////////////////////////////// //////////
91 92
92 #ifdef __cplusplus 93 #ifdef __cplusplus
93 class SkCanvas; 94 class SkCanvas;
94 void sk_test_capi(SkCanvas*); 95 void sk_test_capi(SkCanvas*);
95 #endif 96 #endif
96 97
97 SK_C_PLUS_PLUS_END_GUARD 98 SK_C_PLUS_PLUS_END_GUARD
98 99
99 #endif 100 #endif
OLDNEW
« no previous file with comments | « include/c/sk_paint.h ('k') | src/c/sk_surface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698