changeset 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 633bb89d4a6e
children 2791e0566a0d
files Platforms/Wasm/wasm-viewport.ts
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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));