`org.khronos.webgl.WebGLRenderingContextBase` expo...
# javascript
e
org.khronos.webgl.WebGLRenderingContextBase
exposes
compressedTexImage2D
as
Copy code
fun compressedTexImage2D(target: Int, level: Int, internalformat: Int, width: Int, height: Int, border: Int, data: ArrayBufferView)
I believe this should be:
Copy code
fun compressedTexImage2D(target: Int, level: Int, internalformat: Int, width: Int, height: Int, border: Int, data: ArrayBufferView?)
reference: https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/compressedTexImage2D What is the best place to report this?
t