Merge "Fix bug in Blend that did not use options." am: 92ce74409b

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2097598

Change-Id: Ieafdd7757f2153001a439dcf015832fd528d3fef
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Xusong Wang
2022-05-16 23:05:17 +00:00
committed by Automerger Merge Worker

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 {
}
*/
}