Jannik Vogel
Jannik Vogel
## Introduction This adds macOS support in chipStar and its underlying infrastructure (LLVM, HIP, HIPCC). To make this even more interesting, this is on M1 (Apple Silicon), e.g. ARM. I...
The default branches on many CHIP-SPV repositories are misconfigured: - When sending a pull-request, GitHub will want to send it to the default branch. - When cloning a repository, GitHub...
It would be interesting to show that SNORM conversion happens before texture interpolation - this is not obvious from the test. * An edge between pixel values 0 and 255...
> Chihiro-Launcher does not emulate any Chihiro hardware. It merely patches parts of the original Xbox kernel to support a small portion of the Chihiro games. etc.
http://assemblergames.com/l/threads/chihiro-on-xbox.26483/
We should rebase to the latest upstream. The upstream has added some interesting changes since then; [click here to see the diff / list of commits](https://github.com/XboxDev/nxdk-pdclib/compare/nxdk...DevSolar:master). Most interesting: - scanf...
This code ([taken from Neverball](https://github.com/Neverball/neverball/blob/0ec501d98c5d941af55a7fbff780c668adf66602/share/config.c#L316-L322)) leads to faulty behaviour: ```c #ifdef NXDK #include #include #else #define debugPrint(...) printf(__VA_ARGS__) #endif #include int main() { #ifdef NXDK XVideoSetMode(640, 480, 32, REFRESH_DEFAULT); #endif...
https://github.com/XboxDev/nxdk-pdclib/commit/18e3b16e3bf5d73dbfe842c95c5bb6b0ee100a01 introduced a bug which breaks CMake (which was added later in 4246158ac7f7fbca78bf152843eda5e051d36dc5); this prevents running tests on non-Xbox platforms. ``` $ mkdir build $ cd build $ cmake .....
We should rebase to the latest upstream. The upstream of SDL2 is at 2.0.12 by now. However, the nxdk version is still stuck on 2.0.9. Interesting changes for SDL2 are...
I believe SDL expects no updates to return values of `SDL_JoystickNameForIndex` or `SDL_NumJoysticks` inbetween SDL event pumping and / or `SDL_JoystickUpdate`. Otherwise there might be race conditions. Imagine these steps...