diff Platforms/Wasm/wasm-viewport.ts @ 747:556822c70742 rtviewer19branch

Backfix of d5579bd: Fixed wasm viewport Redraw() to use wasmModule.HEAPU8.buffer instead of the deprecated wasmModule.buffer
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 22 May 2019 13:49:31 +0200
parents e1ba16436d59
children 67d0a8da4afe
line wrap: on
line diff
--- a/Platforms/Wasm/wasm-viewport.ts	Mon May 20 19:55:13 2019 +0200
+++ b/Platforms/Wasm/wasm-viewport.ts	Wed May 22 13:49:31 2019 +0200
@@ -131,7 +131,7 @@
         // "window" above the heap of the WASM module), then copy it to
         // the ImageData object
         this.imageData_.data.set(new Uint8ClampedArray(
-          this.module_.buffer,
+          this.module_.HEAPU8.buffer,
           this.renderingBuffer_,
           this.imageData_.width * this.imageData_.height * 4));