OLD | NEW |
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 Loading... |
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 |
OLD | NEW |