summaryrefslogtreecommitdiffstats
path: root/tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-01-27 14:24:16 +0000
committerNarayan Kamath <narayan@google.com>2014-01-28 10:06:40 +0000
commit88a8364c386c694f7ad56662ef89713dbf7c9d63 (patch)
treed8d88ea86a9db6eb7f686bb3daaf07d6ed18f917 /tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java
parent36bef0bf30d6bae48cf3837df351075ca4fce654 (diff)
downloadframeworks_base-88a8364c386c694f7ad56662ef89713dbf7c9d63.zip
frameworks_base-88a8364c386c694f7ad56662ef89713dbf7c9d63.tar.gz
frameworks_base-88a8364c386c694f7ad56662ef89713dbf7c9d63.tar.bz2
Track 64bit changes to android/graphics.
All pointers are now 64bits wide, so should be represented as java longs and not ints. Also changed DelegateManager and SparseWeakArray to reflect the new world order. Change-Id: Ic32b6b53818dbae9b949f03004c4fb6dae26cdbe
Diffstat (limited to 'tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java')
-rw-r--r--tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java b/tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java
index 4ab044b..f27144f 100644
--- a/tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java
+++ b/tools/layoutlib/bridge/src/android/graphics/PixelXorXfermode_Delegate.java
@@ -61,7 +61,7 @@ public class PixelXorXfermode_Delegate extends Xfermode_Delegate {
// ---- native methods ----
@LayoutlibDelegate
- /*package*/ static int nativeCreate(int opColor) {
+ /*package*/ static long nativeCreate(int opColor) {
PixelXorXfermode_Delegate newDelegate = new PixelXorXfermode_Delegate();
return sManager.addNewDelegate(newDelegate);
}