diff options
author | Romain Guy <romainguy@google.com> | 2011-01-23 16:36:11 -0800 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2011-01-23 16:36:11 -0800 |
commit | a566b7c3aada08d37cf08096c972e3e641bed773 (patch) | |
tree | 47ad89183050d1689f72ec701cb172ea2a794aeb /graphics/java | |
parent | 8b2f5267f16c295f12faab810527cd6311997e34 (diff) | |
download | frameworks_base-a566b7c3aada08d37cf08096c972e3e641bed773.zip frameworks_base-a566b7c3aada08d37cf08096c972e3e641bed773.tar.gz frameworks_base-a566b7c3aada08d37cf08096c972e3e641bed773.tar.bz2 |
Fix bitmap meshes to work in display lists.
Change-Id: Ie226d049840942d9ad9cf58e0c19132f49d62a75
Diffstat (limited to 'graphics/java')
-rw-r--r-- | graphics/java/android/graphics/Canvas.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/Canvas.java b/graphics/java/android/graphics/Canvas.java index 89e725a..00b06e0 100644 --- a/graphics/java/android/graphics/Canvas.java +++ b/graphics/java/android/graphics/Canvas.java @@ -1240,7 +1240,11 @@ public class Canvas { VertexMode(int nativeInt) { this.nativeInt = nativeInt; } - final int nativeInt; + + /** + * @hide + */ + public final int nativeInt; } /** |