Tanner Rogalsky

Results 11 issues of Tanner Rogalsky

Mirrors the slice implementation. Improves ergonomics when comparing arrays.

as3 code for example: ```actionscript package { public class Issue { public function Issue() { var string:String/*test*/ = ""; var o:Object = [1, 2, 3]; var a:Array = o as...

As [per the reference implementation](https://github.com/lz4/lz4/blob/163db1675c0cb5c4e35266e1c1f73e119227ad30/lib/lz4.h#L152) of LZ4_decompress_safe: > the size of destination buffer (which must be already allocated), presumed **an upper bound** of decompressed size I think this mistake originates...

JS bindings into liblove would, I think, make this the best 2D JS game engine. Could the Lua bindings setup be used in such a way as to quickly generate...

enhancement

Compiling against [these changes](https://github.com/jpernst/emscripten/commits/incoming) should provide all of the OpenAL functionality that Love needs but emscripten doesn't share the Web AudioContext used to play audio between workers(threads). More research is...

It's unfortunate that you need to turn off joystick for all browsers just because Safari doesn't have it. We should either provide a mechanism for checking that or fail gracefully...

enhancement

``` warning: unresolved symbol: alcCaptureSamples warning: unresolved symbol: alGetFloat warning: unresolved symbol: alcCaptureStart warning: unresolved symbol: alcCaptureStop ``` Emscripten links in its own OpenAL port. I haven't checked if these...

bug
emscripten

Love.js is built against Lua5.1. LuaJIT does not have a browser port and it's assembly can't be readily ported using emscripten. A potential alternative (although not a solution) could be...

bug

I'm not sure what it should return but we can probably make it more helpful than a single `0x0` entry.

enhancement

The theora dependency was built and linked in but video has the same issue as streaming audio: threads are used to decode it. See #1 for why this is a...

bug