2019-10-27 14:40:36 +01:00
|
|
|
// Copyright 2019 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package jsutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall/js"
|
|
|
|
)
|
|
|
|
|
2020-12-05 18:25:04 +01:00
|
|
|
// isTypedArrayWritable represents whether TypedArray is writable or not.
|
|
|
|
// TypedArray's properties are not writable in the Web standard, but are writable with go2cpp.
|
|
|
|
// This enables to avoid unnecessary allocations of js.Value.
|
|
|
|
var isTypedArrayWritable = js.Global().Get("go2cpp").Truthy()
|
|
|
|
|
2020-01-01 19:58:49 +01:00
|
|
|
// temporaryBuffer is a temporary buffer used at gl.readPixels or gl.texSubImage2D.
|
2019-10-27 14:40:36 +01:00
|
|
|
// The read data is converted to Go's byte slice as soon as possible.
|
|
|
|
// To avoid often allocating ArrayBuffer, reuse the buffer whenever possible.
|
|
|
|
var temporaryBuffer = js.Global().Get("ArrayBuffer").New(16)
|
|
|
|
|
|
|
|
func TemporaryUint8Array(byteLength int) js.Value {
|
|
|
|
if bufl := temporaryBuffer.Get("byteLength").Int(); bufl < byteLength {
|
|
|
|
for bufl < byteLength {
|
|
|
|
bufl *= 2
|
|
|
|
}
|
|
|
|
temporaryBuffer = js.Global().Get("ArrayBuffer").New(bufl)
|
|
|
|
}
|
2020-12-05 18:57:57 +01:00
|
|
|
return uint8Array(temporaryBuffer, 0, byteLength)
|
|
|
|
}
|
|
|
|
|
|
|
|
var uint8ArrayObj js.Value
|
|
|
|
|
|
|
|
func uint8Array(buffer js.Value, byteOffset, byteLength int) js.Value {
|
2020-12-05 18:25:04 +01:00
|
|
|
if isTypedArrayWritable {
|
2020-12-05 19:14:25 +01:00
|
|
|
if Equal(uint8ArrayObj, js.Undefined()) {
|
2020-12-05 18:25:04 +01:00
|
|
|
uint8ArrayObj = js.Global().Get("Uint8Array").New()
|
|
|
|
}
|
2020-12-05 18:57:57 +01:00
|
|
|
uint8ArrayObj.Set("buffer", buffer)
|
|
|
|
uint8ArrayObj.Set("byteOffset", byteOffset)
|
2020-12-05 18:25:04 +01:00
|
|
|
uint8ArrayObj.Set("byteLength", byteLength)
|
|
|
|
return uint8ArrayObj
|
|
|
|
}
|
2020-12-05 18:57:57 +01:00
|
|
|
return js.Global().Get("Uint8Array").New(buffer, byteOffset, byteLength)
|
2019-10-27 14:40:36 +01:00
|
|
|
}
|