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

* commit '009d5413b2730df842cf91a68c3cf6d6d7b4cb6e':
  Fix bugs in scriptGroup.
This commit is contained in:
Jason Sams
2012-10-16 10:52:46 -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);
}
/**