Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 009d5413 authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "Fix bugs in scriptGroup." into jb-mr1-dev

parents 8c8596e8 e6a78866
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ public final class ScriptIntrinsicBlur extends ScriptIntrinsic {
     */
    public void setInput(Allocation ain) {
        mInput = ain;
        bindAllocation(ain, 1);
        setVar(1, ain);
    }

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

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

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

    /**