Webswing rendering is breaking after the latest update of all Chromium based browsers.
We are receiving numerous complaints that the Webswing rendering is breaking after the latest Chrome update 119.
This is a known bug related to all Chromium based browsers: https://bugs.chromium.org/p/chromium/issues/detail?id=1500272&q=canvas%20119&can=2
There are some workarounds:
- Use Firefox, Opera, Safari
- OR Disable acceleration in
chrome://flags/#disable-accelerated-2d-canvas
- OR include the following code in index.html:
var originalGetContext = HTMLCanvasElement.prototype.getContext; HTMLCanvasElement.prototype.getContext = function(type, attributes) { if (attributes) { attributes.willReadFrequently = true; } return originalGetContext.call(this, type, attributes || { willReadFrequently: true }); };
It is advised to also follow the Chromium updates.
arrow_back_ios