changeset 558:d5579bdc59b5 dev

Fixed wasm viewport Redraw() to use wasmModule.HEAPU8.buffer instead of the deprecated wasmModule.buffer
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 17 Apr 2019 16:13:42 +0200
parents 841ab71cd91f
children 1201b12eb9f8
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	Wed Apr 03 17:39:17 2019 +0200
+++ b/Platforms/Wasm/wasm-viewport.ts	Wed Apr 17 16:13:42 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));