Add clipping for intrinsics.
Change-Id: Ic7e1da3c69aa3d5f990816178739120b6059e7a5
This commit is contained in:
@@ -84,9 +84,22 @@ public final class ScriptIntrinsicBlur extends ScriptIntrinsic {
|
||||
* type.
|
||||
*/
|
||||
public void forEach(Allocation aout) {
|
||||
forEach(0, null, aout, null);
|
||||
forEach(aout, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply the filter to the input and save to the specified
|
||||
* allocation.
|
||||
*
|
||||
* @param aout Output allocation. Must match creation element
|
||||
* type.
|
||||
* @param opt LaunchOptions for clipping
|
||||
*/
|
||||
public void forEach(Allocation aout, Script.LaunchOptions opt) {
|
||||
forEach(0, null, aout, null, opt);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get a KernelID for this intrinsic kernel.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user