cutego/qt_wasm_113.go
therecipe 33ee7b247d experimental support for the msvc builds to get the webengine/webview modules working on windows
* Go 1.13 related fixes for js/wasm
* fix windows docker deployment issue
* new 3rdparty/UGlobalHotkey example
* fix webengine module on arch linux
* support for the prebuilt Qt wasm builds
* make use of -trimpath if available
* bump Go version in docker images to 1.12.9
2019-09-10 20:17:30 +02:00

18 lines
257 B
Go

// +build js,wasm
// +build go1.13
package qt
import (
"syscall/js"
"unsafe"
)
func TypedArrayOf(src []byte) js.Value {
dst := Global.Get("Uint8Array").New(len(src))
js.CopyBytesToJS(dst, src)
return dst
}
func ReleaseTypedArray(unsafe.Pointer) {}