Unhiding J API's for Renderscript.

Change-Id: I8c2d43ccca94549bc6ca1a914106567ccc125503
This commit is contained in:
Alex Sakhartchouk
2012-04-11 14:04:23 -07:00
parent 5713c9cfa9
commit 918e840628
12 changed files with 141 additions and 112 deletions

View File

@@ -55,14 +55,15 @@ public class ProgramVertex extends Program {
}
/**
* @hide
* @return number of input attribute elements
*/
public int getInputCount() {
return mInputs != null ? mInputs.length : 0;
}
/**
* @hide
* @param slot location of the input to return
* @return input attribute element
*/
public Element getInput(int slot) {
if (slot < 0 || slot >= mInputs.length) {