You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// First make sure we need to do any work in the first place
if (targetWidth == src.getWidth())
return src;
Causes src to be returned without executing the additional "ops" if specified.
This behavior does not occur when FIT_EXACT, is specified (since no width/height checking is done there). This means different behaviour (whether or not additional ops are executed or not) changes, when you switch the FIT mode.
I think the additional ops should always be executed.
The text was updated successfully, but these errors were encountered:
Causes src to be returned without executing the additional "ops" if specified.
This behavior does not occur when FIT_EXACT, is specified (since no width/height checking is done there). This means different behaviour (whether or not additional ops are executed or not) changes, when you switch the FIT mode.
I think the additional ops should always be executed.
The text was updated successfully, but these errors were encountered: