Fix bug in Blend that did not use options.

For one of the many variants of Blend, a cut&paste error made
that the options were not passed.

This was not caught because no test exercised this.

I've added the test (in a related CL) and fixed the bug.

Bug: 178718752
Test: Ran the RS Java tests
Change-Id: Ide2fef96137ffd89e4431cf15be5df398036d909
This commit is contained in:
Jean-Luc Brouillet
2021-02-12 22:39:33 -08:00
parent edcc760f96
commit a2c6eb2f1a

View File

@@ -99,7 +99,7 @@ public class ScriptIntrinsicBlend extends ScriptIntrinsic {
* @param opt LaunchOptions for clipping * @param opt LaunchOptions for clipping
*/ */
public void forEachSrc(Allocation ain, Allocation aout, Script.LaunchOptions opt) { public void forEachSrc(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
blend(1, ain, aout, null); blend(1, ain, aout, opt);
} }
/** /**
@@ -636,4 +636,3 @@ public class ScriptIntrinsicBlend extends ScriptIntrinsic {
} }
*/ */
} }