You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've already implemented this in github.com/goxjs/gl package, see here.
It's also implemented in github.com/shurcooL/gogl package, see this commit and its discussion, but that gogl package is now deprecated and should not be used.
Want: gl.TexImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, rbga)
Current work-around: gl.Call("texImage2D", gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, rgba)
rgba type is []byte
The text was updated successfully, but these errors were encountered: