diff options
author | Jason Sams <jsams@google.com> | 2012-08-21 15:53:29 -0700 |
---|---|---|
committer | Jason Sams <jsams@google.com> | 2012-08-21 15:53:29 -0700 |
commit | 19e1086df11567be9ee3eaf99fa1fc82c65b2b27 (patch) | |
tree | f0ecdc695141a59ae8f865ffa334cd28b21e75b8 /graphics/java/android/renderscript/ScriptIntrinsic.java | |
parent | ee98610f1af9c12fcb89522cf1795470bec60938 (diff) |
Move the kernel launch to specific intrinsic class.
This allows support of both input types. Kernel source
and global source.
Change-Id: Iea60bebd79c786795eae81c14cbec352b470a9c0
Diffstat (limited to 'graphics/java/android/renderscript/ScriptIntrinsic.java')
-rw-r--r-- | graphics/java/android/renderscript/ScriptIntrinsic.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/graphics/java/android/renderscript/ScriptIntrinsic.java b/graphics/java/android/renderscript/ScriptIntrinsic.java index 6ad1527d05af..f275fee1b891 100644 --- a/graphics/java/android/renderscript/ScriptIntrinsic.java +++ b/graphics/java/android/renderscript/ScriptIntrinsic.java @@ -28,8 +28,4 @@ public class ScriptIntrinsic extends Script { ScriptIntrinsic(int id, RenderScript rs) { super(id, rs); } - - public void forEach(Allocation ain, Allocation aout) { - forEach(0, ain, aout, null); - } } |