Vladimír Vondruš

Results 549 comments of Vladimír Vondruš

Related discussion: https://twitter.com/kamidphish/status/641366351001419777 I may remove that call altogether if it really doesn't help with anything. Would simplify the implementation quite a lot.

Yup, and moreover is also patched over / ignored in emscripten in a similar way: https://github.com/kripken/emscripten/blob/6dc4ac5f9e4d8484e273e4dcc554f809738cedd6/src/library_gl.js#L7361 so I guess this is safe to enable now.

Workaround reverted in f6ba4111e1669b254da8f0dafdbb5d9cb6df364a.

Turns out Emscripten has a bug that prevents this to work. Reverted the workaround revert in 6bb0179c65b3813203d2caf12d75e58f650da87f, Emscripten PR submitted in https://github.com/kripken/emscripten/pull/7112. Reopening until the Emscripten PR is fixed and...

Based on what I read when investigating this, it seems that the API doesn't improve anything on current GPUs anymore (another evidence supporting this is that Vulkan doesn't have any...

For the record (also grabbed from Gitter), this is (an untested) snippet that should work for most common image formats: ```cpp #include // for copy() Containers::Array outputData{std::size_t(image.size().product()), Containers::DirectInit, Color4ub{0, 0,...

Okay, great job! Everything seems to compile and pass tests except a few cases where > Value error_count is not less than 2, actual is 2 but expected < 2...

TODOs for me (adding a comment so I don't forget): - [ ] move `` to a cpp file because it's *heavy* -- https://artificial-mind.net/projects/compile-health/ - [ ] investigate what's up...

Hi! Not sure what's happening here. If you check what symbols the static OpenAL exports, are those listed in the exact same form or mangled differently? Another cause might be...

The changes done in 25f7d79a96dc89b1348773456230a421507f6826 should make static OpenAL work better especially when it comes to 3rd party dependencies, but I'm not sure if it really fixes this issue as...