jardik

Results 8 comments of jardik

Currently having the same issue, dialog doesn't appear in fullscreen mode, but in windowed mode it randomly shows up.

I believe there is a problem before that loop. Lets say you have this situation with instance 1 and 2, where instance 1 is already running: ``` # | Process...

Hmm, looking at Windows implementation of QSharedMemory::create, it seems that there is race even there (QSharedMemory::create doing non-atomic QSharedMemoryPrivate::create + QSharedMemoryPrivate::attach. If the attach fails after create was called and...

I have found an article [here](https://habr.com/en/post/173281/) (in Russian] where the author is solving the race by having additional QSystemSemaphore before the create/attach, basically making them behave atomically. Note that QSystemSemaphore...

Mingw-w64 has _stat64 structure and function is called `_stat64`. Maybe OSG expects POSIX OS when compiling with GCC and is using `stat64`? On Mingw, best would probably be just using...

> I don't rely on 'magic statics' for Windows because it's built in some contexts for toolsets that don't have it enabled. If you introduce non-standard behavior using a compiler...

> Thanks for the report. What do you think of having a `GetWICFactoryForTK` / `SetWICFactoryForTK` added to the _DirectX Tool Kit_ with basically the same design as in [DirectXTex](https://github.com/microsoft/DirectXTex/blob/master/DirectXTex/DirectXTexUtil.cpp#L282)? Hello....