aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/utils
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-08-02 13:55:10 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-02 13:55:10 -0700
commita25f470bc7bef67e7b0486efabf8cbf60a064c9c (patch)
tree3b6e1e0a5dcd9a1c1e68b217b83ffefee154bba5 /include/utils
parent372913f9328b6350e400bd2d1f8afae51c095a2c (diff)
Delete SkNinePatch
Diffstat (limited to 'include/utils')
-rw-r--r--include/utils/SkNinePatch.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/utils/SkNinePatch.h b/include/utils/SkNinePatch.h
deleted file mode 100644
index 4d8788b285..0000000000
--- a/include/utils/SkNinePatch.h
+++ /dev/null
@@ -1,33 +0,0 @@
-
-/*
- * Copyright 2006 The Android Open Source Project
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-#ifndef SkNinePatch_DEFINED
-#define SkNinePatch_DEFINED
-
-#include "SkRect.h"
-#include "SkRegion.h"
-
-class SkBitmap;
-class SkCanvas;
-class SkPaint;
-
-class SkNinePatch {
-public:
- static void DrawNine(SkCanvas* canvas, const SkRect& dst,
- const SkBitmap& bitmap, const SkIRect& margins,
- const SkPaint* paint = NULL);
-
- static void DrawMesh(SkCanvas* canvas, const SkRect& dst,
- const SkBitmap& bitmap,
- const int32_t xDivs[], int numXDivs,
- const int32_t yDivs[], int numYDivs,
- const SkPaint* paint = NULL);
-};
-
-#endif