mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 14:40:38 +00:00
CanvasInterpolation
has updated the order of the CSS properties so that crisp-edges
comes after the browser prefix versions.
This commit is contained in:
parent
342ad984ac
commit
38fb420cc4
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ var CanvasInterpolation = {
|
|||
*/
|
||||
setCrisp: function (canvas)
|
||||
{
|
||||
var types = [ 'optimizeSpeed', 'crisp-edges', '-moz-crisp-edges', '-webkit-optimize-contrast', 'optimize-contrast', 'pixelated' ];
|
||||
var types = [ 'optimizeSpeed', '-moz-crisp-edges', '-o-crisp-edges', '-webkit-optimize-contrast', 'optimize-contrast', 'crisp-edges', 'pixelated' ];
|
||||
|
||||
types.forEach(function (type)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue