mirror of
https://github.com/lovell/sharp.git
synced 2025-12-19 07:15:08 +01:00
committed by
Lovell Fuller
parent
15a577863a
commit
c39a9b8de9
@@ -1289,10 +1289,14 @@ NAN_METHOD(pipeline) {
|
||||
}
|
||||
}
|
||||
// Bandbool operation
|
||||
baton->bandBoolOp = GetBooleanOperation(attrAsStr(options, "bandBoolOp"));
|
||||
if(Has(options, New("bandBoolOp").ToLocalChecked()).FromJust()) {
|
||||
baton->bandBoolOp = GetBooleanOperation(attrAsStr(options, "bandBoolOp"));
|
||||
}
|
||||
|
||||
// Boolean operation
|
||||
baton->booleanOp = GetBooleanOperation(attrAsStr(options, "booleanOp"));
|
||||
if(Has(options, New("booleanOp").ToLocalChecked()).FromJust()) {
|
||||
baton->booleanOp = GetBooleanOperation(attrAsStr(options, "booleanOp"));
|
||||
}
|
||||
|
||||
// Function to notify of queue length changes
|
||||
Callback *queueListener = new Callback(
|
||||
|
||||
Reference in New Issue
Block a user