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

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

Issue 822203002: add image-from-codec to c api (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 12 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
« no previous file with comments | « include/c/sk_image.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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 float top; 72 float top;
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_data_t sk_data_t;
82 typedef struct sk_image_t sk_image_t; 83 typedef struct sk_image_t sk_image_t;
83 typedef struct sk_maskfilter_t sk_maskfilter_t; 84 typedef struct sk_maskfilter_t sk_maskfilter_t;
84 typedef struct sk_paint_t sk_paint_t; 85 typedef struct sk_paint_t sk_paint_t;
86 typedef struct sk_path_t sk_path_t;
85 typedef struct sk_picture_t sk_picture_t; 87 typedef struct sk_picture_t sk_picture_t;
86 typedef struct sk_picture_recorder_t sk_picture_recorder_t; 88 typedef struct sk_picture_recorder_t sk_picture_recorder_t;
87 typedef struct sk_path_t sk_path_t;
88 typedef struct sk_shader_t sk_shader_t; 89 typedef struct sk_shader_t sk_shader_t;
89 typedef struct sk_surface_t sk_surface_t; 90 typedef struct sk_surface_t sk_surface_t;
90 91
91 //////////////////////////////////////////////////////////////////////////////// ////////// 92 //////////////////////////////////////////////////////////////////////////////// //////////
92 93
93 #ifdef __cplusplus 94 #ifdef __cplusplus
94 class SkCanvas; 95 class SkCanvas;
95 void sk_test_capi(SkCanvas*); 96 void sk_test_capi(SkCanvas*);
96 #endif 97 #endif
97 98
98 SK_C_PLUS_PLUS_END_GUARD 99 SK_C_PLUS_PLUS_END_GUARD
99 100
100 #endif 101 #endif
OLDNEW
« no previous file with comments | « include/c/sk_image.h ('k') | src/c/sk_surface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698