diff options
| author | 2012-05-08 17:14:18 -0700 | |
|---|---|---|
| committer | 2012-05-08 17:14:18 -0700 | |
| commit | f18c68b83f4919cf903e249da056acb470b683af (patch) | |
| tree | 56ebc10498d0d25156114dc3b6787cb49af44b61 | |
| parent | 5602d02389c2b945e8d78ea34990933a8e1ddc8b (diff) | |
Add missing native method to Canvas_Delegate.
Change-Id: I86288c942004e5489eacc43ba5e112cf56f94487
| -rw-r--r-- | tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java b/tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java index 16f15757f072..9aed8c852118 100644 --- a/tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java +++ b/tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java @@ -307,6 +307,11 @@ public final class Canvas_Delegate { } @LayoutlibDelegate + /*package*/ static void freeTextLayoutCaches() { + // nothing to be done here yet. + } + + @LayoutlibDelegate /*package*/ static int initRaster(int nativeBitmapOrZero) { if (nativeBitmapOrZero > 0) { // get the Bitmap from the int |