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-15 18:41:06 +01:00
|
|
|
var (
|
|
|
|
arrayBuffer = js.Global().Get("ArrayBuffer")
|
|
|
|
uint8Array = js.Global().Get("Uint8Array")
|
|
|
|
float32Array = js.Global().Get("Float32Array")
|
|
|
|
)
|
|
|
|
|
2020-12-15 17:14:19 +01:00
|
|
|
var (
|
|
|
|
// temporaryArrayBuffer is a temporary buffer used at gl.readPixels or gl.texSubImage2D.
|
|
|
|
// The read data is converted to Go's byte slice as soon as possible.
|
|
|
|
// To avoid often allocating ArrayBuffer, reuse the buffer whenever possible.
|
2020-12-26 09:04:12 +01:00
|
|
|
temporaryArrayBuffer = arrayBuffer.New(16)
|
2019-10-27 14:40:36 +01:00
|
|
|
|
2020-12-15 17:14:19 +01:00
|
|
|
// temporaryUint8Array is a Uint8ArrayBuffer whose underlying buffer is always temporaryArrayBuffer.
|
2020-12-26 09:04:12 +01:00
|
|
|
temporaryUint8Array = uint8Array.New(temporaryArrayBuffer)
|
2020-12-15 17:14:19 +01:00
|
|
|
|
|
|
|
// temporaryFloat32Array is a Float32ArrayBuffer whose underlying buffer is always temporaryArrayBuffer.
|
2020-12-26 09:04:12 +01:00
|
|
|
temporaryFloat32Array = float32Array.New(temporaryArrayBuffer)
|
2020-12-15 17:14:19 +01:00
|
|
|
)
|
2020-12-13 19:02:58 +01:00
|
|
|
|
|
|
|
func ensureTemporaryArrayBufferSize(byteLength int) {
|
2020-12-26 09:04:12 +01:00
|
|
|
bufl := temporaryArrayBuffer.Get("byteLength").Int()
|
2020-12-25 21:12:02 +01:00
|
|
|
if bufl < byteLength {
|
2019-10-27 14:40:36 +01:00
|
|
|
for bufl < byteLength {
|
|
|
|
bufl *= 2
|
|
|
|
}
|
2020-12-15 18:41:06 +01:00
|
|
|
temporaryArrayBuffer = arrayBuffer.New(bufl)
|
2020-12-13 19:02:58 +01:00
|
|
|
}
|
2020-12-26 09:04:12 +01:00
|
|
|
if temporaryUint8Array.Get("byteLength").Int() < bufl {
|
2020-12-15 18:41:06 +01:00
|
|
|
temporaryUint8Array = uint8Array.New(temporaryArrayBuffer)
|
2020-12-15 17:30:09 +01:00
|
|
|
}
|
2020-12-26 09:04:12 +01:00
|
|
|
if temporaryFloat32Array.Get("byteLength").Int() < bufl {
|
2020-12-15 18:41:06 +01:00
|
|
|
temporaryFloat32Array = float32Array.New(temporaryArrayBuffer)
|
2020-12-15 17:30:09 +01:00
|
|
|
}
|
2020-12-13 19:02:58 +01:00
|
|
|
}
|
|
|
|
|
2020-12-15 17:14:19 +01:00
|
|
|
// TemporaryUint8Array returns a Uint8Array whose length is at least minLength.
|
|
|
|
// Be careful that the length can exceed the given minLength.
|
2020-12-15 17:30:09 +01:00
|
|
|
// data must be a slice of a numeric type for initialization, or nil if you don't need initialization.
|
|
|
|
func TemporaryUint8Array(minLength int, data interface{}) js.Value {
|
2020-12-15 17:14:19 +01:00
|
|
|
ensureTemporaryArrayBufferSize(minLength)
|
2020-12-15 17:30:09 +01:00
|
|
|
if data != nil {
|
|
|
|
copySliceToTemporaryArrayBuffer(data)
|
2019-10-27 14:40:36 +01:00
|
|
|
}
|
2020-12-15 17:14:19 +01:00
|
|
|
return temporaryUint8Array
|
2020-12-05 19:23:07 +01:00
|
|
|
}
|
|
|
|
|
2020-12-15 17:14:19 +01:00
|
|
|
// TemporaryFloat32Array returns a Float32Array whose length is at least minLength.
|
|
|
|
// Be careful that the length can exceed the given minLength.
|
2020-12-15 17:30:09 +01:00
|
|
|
// data must be a slice of a numeric type for initialization, or nil if you don't need initialization.
|
|
|
|
func TemporaryFloat32Array(minLength int, data interface{}) js.Value {
|
2020-12-15 17:14:19 +01:00
|
|
|
ensureTemporaryArrayBufferSize(minLength * 4)
|
2020-12-15 17:30:09 +01:00
|
|
|
if data != nil {
|
|
|
|
copySliceToTemporaryArrayBuffer(data)
|
2020-12-15 17:14:19 +01:00
|
|
|
}
|
|
|
|
return temporaryFloat32Array
|
2020-12-05 18:57:57 +01:00
|
|
|
}
|