Advertisement
athaariq

GPU Killer

Oct 23rd, 2021
1,687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let ctxs = []
  2. setInterval(() => {
  3.     const elem = document.createElement('canvas')
  4.     const ctx = elem.getContext('2d')
  5.     ctx.canvas.width = 1920
  6.     ctx.canvas.height = 1080
  7.     ctxs.push(ctx)
  8.     ctx.drawImage(elem,0,0)
  9. },1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement