view Platforms/WebAssembly/defaults.js @ 224:5fcffbce35a9 am

refactoring continued - not working
author am@osimis.io
date Thu, 14 Jun 2018 10:58:38 +0200
parents 84844649a8fd
children b0ba3b38a23c
line wrap: on
line source

var isPendingRedraw = false;

function ScheduleRedraw()
{
  if (!isPendingRedraw) {
    isPendingRedraw = true;
    //console.log('Scheduling a refresh of the viewport, as its content changed');
    window.requestAnimationFrame(function() {
      isPendingRedraw = false;
      viewport.Redraw();
    });
  }
}