view Platforms/Wasm/default-library.js @ 275:58e23e0dd86a am-2

renaming
author am@osimis.io
date Fri, 24 Aug 2018 13:58:06 +0200
parents f73d722d98c8
children 2038d76bf13f
line wrap: on
line source

// this file contains the JS method you want to expose to C++ code

mergeInto(LibraryManager.library, {
  ScheduleWebViewportRedrawFromCpp: function(cppViewportHandle) {
    ScheduleWebViewportRedraw(cppViewportHandle);
  },
  CreateWasmViewportFromCpp: function(htmlCanvasId) {
    return CreateWasmViewport(htmlCanvasId);
  }
});