Merge "Fix bug in Blend that did not use options."

This commit is contained in:
Xusong Wang
2022-05-16 22:40:50 +00:00
committed by Gerrit Code Review

View File

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