From 45cec0a9711f736df26fd097c6d74834e350f9bc Mon Sep 17 00:00:00 2001 From: Miao Wang Date: Wed, 4 Mar 2015 16:40:21 -0800 Subject: [RenderScript] Update the java API about Allocation copyTo & From FieldPacker Change-Id: I4e1b911d4cdfec8a841bc5a8bc615c64c50e8fc8 --- rs/java/android/renderscript/RenderScript.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'rs/java/android/renderscript/RenderScript.java') diff --git a/rs/java/android/renderscript/RenderScript.java b/rs/java/android/renderscript/RenderScript.java index 29004c5a16b1..b992d44df47e 100644 --- a/rs/java/android/renderscript/RenderScript.java +++ b/rs/java/android/renderscript/RenderScript.java @@ -579,12 +579,11 @@ public class RenderScript { } native void rsnAllocationElementRead(long con,long id, int xoff, int yoff, int zoff, - int mip, int compIdx, Object d, int sizeBytes, int dt); + int mip, int compIdx, byte[] d, int sizeBytes); synchronized void nAllocationElementRead(long id, int xoff, int yoff, int zoff, - int mip, int compIdx, Object d, int sizeBytes, - Element.DataType dt) { + int mip, int compIdx, byte[] d, int sizeBytes) { validate(); - rsnAllocationElementRead(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes, dt.mID); + rsnAllocationElementRead(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes); } native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, -- cgit v1.2.3