diff options
author | Jason Sams <jsams@google.com> | 2012-03-23 11:47:26 -0700 |
---|---|---|
committer | Jason Sams <jsams@google.com> | 2012-03-23 11:47:26 -0700 |
commit | fe1d5ffd1b6c4977a9f301997d2ad90e5b049a3b (patch) | |
tree | 7a3135d31e4415a4b6b31c7e44ad15cfa1ccc86f /graphics/java/android/renderscript/RenderScript.java | |
parent | 3da5525558ad84757c48907eead66f44f0f5dd32 (diff) |
Implement USAGE_IO_INPUT
Change-Id: Idbf7bb21f5ab673ad77082c5c19921d2b276c04b
Diffstat (limited to 'graphics/java/android/renderscript/RenderScript.java')
-rw-r--r-- | graphics/java/android/renderscript/RenderScript.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/java/android/renderscript/RenderScript.java b/graphics/java/android/renderscript/RenderScript.java index 6921f3780c41..ab6ba546b05f 100644 --- a/graphics/java/android/renderscript/RenderScript.java +++ b/graphics/java/android/renderscript/RenderScript.java @@ -16,8 +16,8 @@ package android.renderscript; -import java.lang.reflect.Field; import java.io.File; +import java.lang.reflect.Field; import android.content.Context; import android.content.pm.ApplicationInfo; @@ -294,6 +294,11 @@ public class RenderScript { validate(); return rsnAllocationGetSurfaceTextureID(mContext, alloc); } + native void rsnAllocationGetSurfaceTextureID2(int con, int alloc, SurfaceTexture st); + synchronized void nAllocationGetSurfaceTextureID2(int alloc, SurfaceTexture st) { + validate(); + rsnAllocationGetSurfaceTextureID2(mContext, alloc, st); + } native void rsnAllocationSetSurfaceTexture(int con, int alloc, SurfaceTexture sur); synchronized void nAllocationSetSurfaceTexture(int alloc, SurfaceTexture sur) { validate(); |