Items or anything at an angle will appear horribly aliased and interpolated. The canvas is not scaled correctly in relation to some screens (like mine)
A very simple solution is to simply scale the canvas by the device pixel ratio (dpr):
This will fix all interpolation issues except for things being drawn at floating-point locations. Also, it scales the canvas correctly to fit the screen.
Items or anything at an angle will appear horribly aliased and interpolated. The canvas is not scaled correctly in relation to some screens (like mine)
A very simple solution is to simply scale the canvas by the device pixel ratio (dpr):
This will fix all interpolation issues except for things being drawn at floating-point locations. Also, it scales the canvas correctly to fit the screen.