am 8d0c431a: am 009d5413: Merge "Fix bugs in scriptGroup." into jb-mr1-dev

* commit '8d0c431a5284a7374b889b9b719e88ba993469f9':
  Fix bugs in scriptGroup.
This commit is contained in:
Jason Sams
2012-10-16 10:55:20 -07:00
committed by Android Git Automerger
4 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ public final class ScriptIntrinsicBlur extends ScriptIntrinsic {
*/
public void setInput(Allocation ain) {
mInput = ain;
bindAllocation(ain, 1);
setVar(1, ain);
}
/**

View File

@@ -68,7 +68,7 @@ public final class ScriptIntrinsicConvolve3x3 extends ScriptIntrinsic {
*/
public void setInput(Allocation ain) {
mInput = ain;
bindAllocation(ain, 1);
setVar(1, ain);
}
/**

View File

@@ -61,7 +61,7 @@ public final class ScriptIntrinsicConvolve5x5 extends ScriptIntrinsic {
*/
public void setInput(Allocation ain) {
mInput = ain;
bindAllocation(ain, 1);
setVar(1, ain);
}
/**

View File

@@ -56,7 +56,7 @@ public final class ScriptIntrinsicYuvToRGB extends ScriptIntrinsic {
*/
public void setInput(Allocation ain) {
mInput = ain;
bindAllocation(ain, 0);
setVar(0, ain);
}
/**