view Samples/WebAssembly/app.js @ 956:a7351ad54960

Made IsContextLost automatically set the flag by checking with the emscripten WebGL wrapper + added a LOT of logging messages right before throwing ErrorCode_BadSequenceOfCalls exceptions + increased the http request timeouts from 60 to 600 sec (big datasets in some recent customer use cases) + added IsContext lost through the Viewport/Context layer (to make it reachable from external API) + the same for the underlying device context (for debug)
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 21 Aug 2019 16:16:30 +0200
parents d71cf8504159
children
line wrap: on
line source

/**
 * This is a generic bootstrap code that is shared by all the Stone
 * sample applications.
 **/

// Check support for WebAssembly
if (!('WebAssembly' in window)) {
  alert('Sorry, your browser does not support WebAssembly :(');
} else {

  // Wait for the module to be loaded (the event "WebAssemblyLoaded"
  // must be emitted by the "main" function)
  window.addEventListener('WebAssemblyLoaded', function() {

    // Loop over the GET arguments
    var parameters = window.location.search.substr(1);
    if (parameters != null && parameters != '') {
      var tokens = parameters.split('&');
      for (var i = 0; i < tokens.length; i++) {
        var arg = tokens[i].split('=');
        if (arg.length == 2) {

          // Send each GET argument to WebAssembly
          Module.ccall('SetArgument', null, [ 'string', 'string' ],
                       [ arg[0], decodeURIComponent(arg[1]) ]);
        }
      }
    }

    // Inform the WebAssembly module that it can start
    Module.ccall('Initialize', null, null, null);
  });
}