stgatilov

Results 14 comments of stgatilov

It would be great to have a way to disable the check without rebuilding the library. I hoped I would use all libraries via conan, but now I'm afraid I...

In case anyone uses glfw via conan, here is the place where I hacked glfw recipe to make RDP work: ```python def source(self): sha256 = "0c623f65a129c424d0fa45591694fde3719ad4a0955d4835182fda71b255446f" ver = self.version.split('-')[0] tools.get("{}/archive/{}.zip".format(self.homepage,...

> We can do that by adding flag checking in the branch for loop in the runtime, and use additional thread for setting the flag when the guard time expires,...

Most users won't like multithreading, since they have a bunch of models to load, and they can do much more efficient multithreading simply by distributing files across threads. What is...

To me it looks like a bug of OpenAL. Intrinsics are not a part of C++, not even a part of C. One must not expect all sort of C++...

One of TDM users had similar problem. See [original discussion on TDM forums](https://forums.thedarkmod.com/index.php?/topic/20466-stuttering-sound-and-performance-loss-when-using-openal-hrtf/). He says everything works properly with `period_size = 64` and with `period_size = 8192` (except for a...

Perhaps it is the issue of Doom 3 engine. It also has a separate sound thread. Originally it was doing the mixing, but now it just streams data into OpenAL...

Depending on compiler, [STL can be very slow in debug](https://github.com/kcat/openal-soft/issues/540). For that reason I'd definitely vote against replacing a custom container that works and has benefit over std::vector. (Ab)using STL...

I guess the same applies to json of a state, maybe json is even better.

Duplicate of https://github.com/MikeMirzayanov/testlib/issues/82