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
Using two.js Chrome throws this deprecation message:
CanvasRenderingContext2D.webkitImageSmoothingEnabled' is deprecated. Please use 'CanvasRenderingContext2D.imageSmoothingEnabled' instead.
According to a thread here: fabricjs/fabric.js#2047 this message is probably not the most timeconsuming thing to leave out of (the most recent) Chrome by using this:
if (typeof(ctx.imageSmoothingEnabled) !== 'undefined') {
ctx.imageSmoothingEnabled = this.imageSmoothingEnabled;
return;
}
The text was updated successfully, but these errors were encountered:
Using two.js Chrome throws this deprecation message:
According to a thread here: fabricjs/fabric.js#2047 this message is probably not the most timeconsuming thing to leave out of (the most recent) Chrome by using this:
The text was updated successfully, but these errors were encountered: