From 43563896061bd70f83b10325c2642d1b97b26df5 Mon Sep 17 00:00:00 2001 From: Yang Ni Date: Tue, 12 May 2015 13:53:38 -0700 Subject: Elaborate on description of ScriptGroup.execute b/21039492 ScriptGroup.execute(Object...): Describe input and output order. Change-Id: I88668338ab2ac50e602b97891b86509c81dedf4d --- rs/java/android/renderscript/ScriptGroup.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'rs') diff --git a/rs/java/android/renderscript/ScriptGroup.java b/rs/java/android/renderscript/ScriptGroup.java index be8b0fd..d1a12f9 100644 --- a/rs/java/android/renderscript/ScriptGroup.java +++ b/rs/java/android/renderscript/ScriptGroup.java @@ -400,8 +400,10 @@ public final class ScriptGroup extends BaseObj { /** * Executes a script group * - * @param inputs inputs to the script group - * @return outputs of the script group as an array of objects + * @param inputs Values for inputs to the script group, in the order as the + * inputs are added via {@link Builder2#addInput}. + * @return Outputs of the script group as an array of objects, in the order + * as futures are passed to {@link Builder2#create}. */ public Object[] execute(Object... inputs) { -- cgit v1.1