summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJason Sams <jsams@google.com>2013-04-15 02:22:12 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-04-15 02:22:14 +0000
commit330a9fe323cfb2f492665b73822f056c2c6689c2 (patch)
treea33c33ec1bba18ce68429328a60d410cb582f5b3 /api
parente1375908a5f05e5c926e95049970c4505e4dfad9 (diff)
parent02d56d90e01e20db8424de94a14fe59dc94f19c0 (diff)
downloadframeworks_base-330a9fe323cfb2f492665b73822f056c2c6689c2.zip
frameworks_base-330a9fe323cfb2f492665b73822f056c2c6689c2.tar.gz
frameworks_base-330a9fe323cfb2f492665b73822f056c2c6689c2.tar.bz2
Merge "Unhide new RS APIs." into jb-mr2-dev
Diffstat (limited to 'api')
-rw-r--r--api/current.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index df2a290..32b576f 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -20198,11 +20198,13 @@ package android.renderscript {
public class RenderScript {
method public void contextDump();
method public static android.renderscript.RenderScript create(android.content.Context);
+ method public static android.renderscript.RenderScript create(android.content.Context, android.renderscript.RenderScript.ContextType);
method public void destroy();
method public void finish();
method public final android.content.Context getApplicationContext();
method public android.renderscript.RenderScript.RSErrorHandler getErrorHandler();
method public android.renderscript.RenderScript.RSMessageHandler getMessageHandler();
+ method public void sendMessage(int, int[]);
method public void setErrorHandler(android.renderscript.RenderScript.RSErrorHandler);
method public void setMessageHandler(android.renderscript.RenderScript.RSMessageHandler);
method public void setPriority(android.renderscript.RenderScript.Priority);
@@ -20365,6 +20367,13 @@ package android.renderscript {
public abstract class ScriptIntrinsic extends android.renderscript.Script {
}
+ public final class ScriptIntrinsic3DLUT extends android.renderscript.ScriptIntrinsic {
+ method public static android.renderscript.ScriptIntrinsic3DLUT create(android.renderscript.RenderScript, android.renderscript.Element);
+ method public void forEach(android.renderscript.Allocation, android.renderscript.Allocation);
+ method public android.renderscript.Script.KernelID getKernelID();
+ method public void setLUT(android.renderscript.Allocation);
+ }
+
public class ScriptIntrinsicBlend extends android.renderscript.ScriptIntrinsic {
method public static android.renderscript.ScriptIntrinsicBlend create(android.renderscript.RenderScript, android.renderscript.Element);
method public void forEachAdd(android.renderscript.Allocation, android.renderscript.Allocation);
@@ -20484,6 +20493,7 @@ package android.renderscript {
method public android.renderscript.Element getElement();
method public int getX();
method public int getY();
+ method public int getYuv();
method public int getZ();
method public boolean hasFaces();
method public boolean hasMipmaps();
@@ -20496,6 +20506,7 @@ package android.renderscript {
method public android.renderscript.Type.Builder setMipmaps(boolean);
method public android.renderscript.Type.Builder setX(int);
method public android.renderscript.Type.Builder setY(int);
+ method public android.renderscript.Type.Builder setYuvFormat(int);
method public android.renderscript.Type.Builder setZ(int);
}