aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Hal Canary <halcanary@google.com>2018-02-20 09:59:29 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-02-20 16:52:03 +0000
commit5c036433b769394a68b0b799ce32c181e23874e0 (patch)
treefc4a1a94757d8b6ca612f57d92c0e66a53762be5 /site
parent7fe33c0a423a351a5d00402a86ca73aa3ba92103 (diff)
Docs: clean up links
No-Try: true Docs-Preview: https://skia.org/user/api?cl=108502 Change-Id: I17547b53b50a00e4e9ad1704a032b5b0d14ea436 Reviewed-on: https://skia-review.googlesource.com/108502 Reviewed-by: Cary Clark <caryclark@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
Diffstat (limited to 'site')
-rw-r--r--site/user/api/index.md32
-rw-r--r--site/user/api/skcanvas_creation.md2
-rw-r--r--site/user/api/skcanvas_overview.md2
3 files changed, 22 insertions, 14 deletions
diff --git a/site/user/api/index.md b/site/user/api/index.md
index 76167eaacf..1e116e721d 100644
--- a/site/user/api/index.md
+++ b/site/user/api/index.md
@@ -5,19 +5,26 @@ Skia documentation is actively under development.
Full references with examples are available for:
-* [SkBitmap](/user/api/SkBitmap_Reference) - two-dimensional raster pixel array
-* [SkCanvas](/user/api/SkCanvas_Reference) - drawing context
-* [SkIRect](/user/api/SkIRect_Reference) - integer rectangle
-* [SkMatrix](/user/api/SkMatrix_Reference) - 3x3 transformation matrix
-* [SkPaint](/user/api/SkPaint_Reference) - color, stroke, font, effects
-* [SkPath](/user/api/SkPath_Reference) - series of connected lines and curves
-* [SkPixmap](/user/api/SkPixmap_Reference) - pixel map: image info and pixel address
-* [SkRect](/user/api/SkRect_Reference) - floating point rectangle
+* [SkAutoCanvasRestore](/user/api/SkAutoCanvasRestore_Reference) - Canvas save stack manager
+* [SkBitmap](/user/api/SkBitmap_Reference) - two-dimensional raster pixel array
+* [SkCanvas](/user/api/SkCanvas_Reference) - drawing context
+* [SkImage](/user/api/SkImage_Reference) - two dimensional array of pixels to draw
+* [SkImageInfo](/user/api/SkImageInfo_Reference) - pixel dimensions and characteristics
+* [SkIPoint](/user/api/SkIPoint_Reference) - two integer coordinates
+* [SkIPoint16](/user/api/SkIPoint16_Reference) - two 16-bit integer coordinates
+* [SkIRect](/user/api/SkIRect_Reference) - integer rectangle
+* [SkMatrix](/user/api/SkMatrix_Reference) - 3x3 transformation matrix
+* [SkPaint](/user/api/SkPaint_Reference) - color, stroke, font, effects
+* [SkPath](/user/api/SkPath_Reference) - sequence of connected lines and curves
+* [SkPixmap](/user/api/SkPixmap_Reference) - pixel map: image info and pixel address
+* [SkPoint](/user/api/SkPoint_Reference) - two floating point coordinates
+* [SkRect](/user/api/SkRect_Reference) - floating point rectangle
+* [SkSurface](/user/api/SkSurface_Reference) - drawing destination
Check out [a graphical overview of examples](api/catalog.htm)
All public APIs are indexed by Doxygen. The Doxyen index is current, but the
-content is dated and incomplete. Doxygen content will be superceded by
+content is dated and incomplete. Doxygen content will be superseded by
full references with examples.
* [Skia Doxygen](http://skia-doc.commondatastorage.googleapis.com/doxygen/doxygen/html/index.html)
@@ -47,6 +54,7 @@ attributes of the drawing are controlled by the paint.
Using the SkCanvas API:
-* [SkCanvas Overview](/user/api/skcanvas_overivew) - the drawing context
-* [Creating SkCanvas Objects](/user/api/creating_skcanvas)
-* [SkPaint Overview](/user/api/skpaint_overview) - color, stroke, font, effects
+1. [SkCanvas Overview](/user/api/skcanvas_overview) - the drawing context
+2. [SkPaint Overview](/user/api/skpaint_overview) - color, stroke, font, effects
+3. [SkCanvas Creation](/user/api/skcanvas_creation)
+
diff --git a/site/user/api/skcanvas_creation.md b/site/user/api/skcanvas_creation.md
index c5af2a22f0..4055923904 100644
--- a/site/user/api/skcanvas_creation.md
+++ b/site/user/api/skcanvas_creation.md
@@ -1,7 +1,7 @@
SkCanvas Creation
=========================
-First, read about [the SkCanvas API](skcanvas).
+First, read about [the SkCanvas API](skcanvas_overview).
Skia has multiple backends which receive SkCanvas drawing commands,
including:
diff --git a/site/user/api/skcanvas_overview.md b/site/user/api/skcanvas_overview.md
index 250b561d94..8b555ea675 100644
--- a/site/user/api/skcanvas_overview.md
+++ b/site/user/api/skcanvas_overview.md
@@ -67,4 +67,4 @@ In some of the calls, we pass a pointer, rather than a reference, to
the paint. In those instances, the paint parameter may be null. In all
other cases the paint parameter is required.
-Next: [SkPaint](/user/api/skpaint)
+Next: [SkPaint](/user/api/skpaint_overview)