diff --git a/api/current.txt b/api/current.txt index b7f63bcb18c71..eeef425090153 100644 --- a/api/current.txt +++ b/api/current.txt @@ -32855,6 +32855,7 @@ package android.renderscript { method public void getVarV(int, android.renderscript.FieldPacker); method protected void invoke(int); method protected void invoke(int, android.renderscript.FieldPacker); + method protected void reduce(int, android.renderscript.Allocation[], android.renderscript.Allocation, android.renderscript.Script.LaunchOptions); method public void setTimeZone(java.lang.String); method public void setVar(int, float); method public void setVar(int, double); diff --git a/api/system-current.txt b/api/system-current.txt index 55f08c8887928..3decd08ee71ca 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -35052,6 +35052,7 @@ package android.renderscript { method public void getVarV(int, android.renderscript.FieldPacker); method protected void invoke(int); method protected void invoke(int, android.renderscript.FieldPacker); + method protected void reduce(int, android.renderscript.Allocation[], android.renderscript.Allocation, android.renderscript.Script.LaunchOptions); method public void setTimeZone(java.lang.String); method public void setVar(int, float); method public void setVar(int, double); diff --git a/api/test-current.txt b/api/test-current.txt index e320b6742ff6e..23ddbb767bfe9 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -32869,6 +32869,7 @@ package android.renderscript { method public void getVarV(int, android.renderscript.FieldPacker); method protected void invoke(int); method protected void invoke(int, android.renderscript.FieldPacker); + method protected void reduce(int, android.renderscript.Allocation[], android.renderscript.Allocation, android.renderscript.Script.LaunchOptions); method public void setTimeZone(java.lang.String); method public void setVar(int, float); method public void setVar(int, double); diff --git a/rs/java/android/renderscript/Script.java b/rs/java/android/renderscript/Script.java index 84f980dc24cde..2b0678046e324 100644 --- a/rs/java/android/renderscript/Script.java +++ b/rs/java/android/renderscript/Script.java @@ -315,7 +315,6 @@ public class Script extends BaseObj { /** * Only intended for use by generated reflected code. (General reduction) * - * @hide */ protected void reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) { mRS.validate();