aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-07-31 15:16:23 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-31 15:16:23 -0700
commit80a1c54740c3e007e45fcd4cfa5ce1d2cf291ac5 (patch)
treeb1c59695ab3c27720b47f8d161f5e4426eac0793 /src/c
parentd164a710c7658ee5326f2b61bcb7cd91bb019592 (diff)
C API: remove dead code, simplify boilerplate
Diffstat (limited to 'src/c')
-rw-r--r--src/c/sk_surface.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/c/sk_surface.cpp b/src/c/sk_surface.cpp
index 5b6210d19d..1e676ffe7c 100644
--- a/src/c/sk_surface.cpp
+++ b/src/c/sk_surface.cpp
@@ -625,50 +625,3 @@ const void* sk_data_get_data(const sk_data_t* cdata) {
}
///////////////////////////////////////////////////////////////////////////////////////////
-///////////////////////////////////////////////////////////////////////////////////////////
-
-void sk_test_capi(SkCanvas* canvas) {
- sk_imageinfo_t cinfo;
- cinfo.width = 100;
- cinfo.height = 100;
- cinfo.colorType = (sk_colortype_t)kN32_SkColorType;
- cinfo.alphaType = (sk_alphatype_t)kPremul_SkAlphaType;
-
- sk_surfaceprops_t surfaceprops;
- surfaceprops.pixelGeometry = UNKNOWN_SK_PIXELGEOMETRY;
-
- sk_surface_t* csurface = sk_surface_new_raster(&cinfo, &surfaceprops);
- sk_canvas_t* ccanvas = sk_surface_get_canvas(csurface);
-
- sk_paint_t* cpaint = sk_paint_new();
- sk_paint_set_antialias(cpaint, true);
- sk_paint_set_color(cpaint, 0xFFFF0000);
-
- sk_rect_t cr = { 5, 5, 95, 95 };
- sk_canvas_draw_oval(ccanvas, &cr, cpaint);
-
- cr.left += 25;
- cr.top += 25;
- cr.right -= 25;
- cr.bottom -= 25;
- sk_paint_set_color(cpaint, 0xFF00FF00);
- sk_canvas_draw_rect(ccanvas, &cr, cpaint);
-
- sk_path_t* cpath = sk_path_new();
- sk_path_move_to(cpath, 50, 50);
- sk_path_line_to(cpath, 100, 100);
- sk_path_line_to(cpath, 50, 100);
- sk_path_close(cpath);
-
- sk_canvas_draw_path(ccanvas, cpath, cpaint);
-
- sk_image_t* cimage = sk_surface_new_image_snapshot(csurface);
-
- // HERE WE CROSS THE C..C++ boundary
- canvas->drawImage((const SkImage*)cimage, 20, 20, NULL);
-
- sk_path_delete(cpath);
- sk_paint_delete(cpaint);
- sk_image_unref(cimage);
- sk_surface_unref(csurface);
-}