Max Godefroy

Results 4 issues of Max Godefroy

Using Visual Studio on Windows, whenever I try to load an uncompiled .rpsl file, I get the following error: ``` Failed to compile RPSL 'rps_hlslc/rps-hlslc.exe "${PROJECT_DIR}\my_file.rpsl" -od ""${PROJECT_DIR}\\tmp"" -m my_file...

In `test_builder`, we use the following structure to pass graph info: ```cpp struct PrivateUpdateInfo { uint32_t width; uint32_t height; RpsBool bUseOffscreenRT; RpsBool bUseMSAA; }; ``` However we were using `rpsTypeInfoInitFromType(void*)`...

`time` is declared on the stack, but was accessed through a pointer after being unscoped when calling `rpsRenderGraphUpdate()`. It resulted in receiving an invalid value in `DrawTriangleBreathingCb`, breaking the demo....

The RPSL compilation command does not work on Windows, and seems to have been designed for Unix-like systems. This PR fixes the command line for Windows, while keeping compatibility with...