Skip to content

Instantly share code, notes, and snippets.

@mashaal
Created August 22, 2016 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mashaal/ff5e24f8c6decafb952516ba56c3a57d to your computer and use it in GitHub Desktop.
Save mashaal/ff5e24f8c6decafb952516ba56c3a57d to your computer and use it in GitHub Desktop.
Retina Canvas
// example for retina canvas
this.canvas.width = this.width * window.devicePixelRatio
this.canvas.height = this.height * window.devicePixelRatio
this.canvas.style.width = `${this.width}px`
this.canvas.style.height = `${this.height}px`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment