Tobias Rittig, Ph.D.

Results 21 comments of Tobias Rittig, Ph.D.

I have written this PR with github.dev and I don't have all the required packages for building the docs in my docker container. I know from Tomas it's quite a...

+1 same for me. Changing `MSVC_VERSION` to 14.1 just throws a lot of >Unknown compiler version - please run the configure tests and report the results errors.

These `Unknown compiler version` errors are coming from a [boost header file](https://github.com/mitsuba-renderer/dependencies_win64/blob/efbc0ebe12c4ed22d404bd662cd262e34135f8b6/include/boost/config/compiler/visualc.hpp#L320). My Visual C compiler version is `19.11.25547` which will make this test fail. And upgrading boost won't help,...

Yes, I made it. There were some problems in the `ply` module, but I just commented it in `shapes/SConstruct`. Even got the GUI working with @guoxx's tips.

@guoxx No, I don't have such artifacts. It looks just like the 0.5.0 binaries except for some minor scalings on the menu fonts. @JeroenDStout ```bash git clone --depth=1 https://github.com/mitsuba-renderer/mitsuba.git cd...

@mzeilfelder which versions of libpng/zlib are you linking to? It looks to me, as if they are not linked properly (but I am not an expert on windows for that)....

Looks like HDR is supported by `nanogui` only on Mac so far. I don't see a way to enforce it a the moment - only to disable it (`ldrFlag`). ##...

Breaking in a debugger stops at https://github.com/Tom94/tev/blob/master/src/main.cpp#L363 if that's of any help. Unfortunately I'm not being able to build v1.17 myself as it complains about: > Fetched in submodule path...

For future reference: The 'missing' commit is actually related to swapping out the underlying nanogui repository. `3a74420` is the head of https://github.com/Tom94/nanogui/tree/tev. Git doesn't realize changes in .gitmodules, you have...

Yes the below snippet made this part significantly more performant. I'm additionally avoiding the string copy (alloc + dealloc). It might be useful to push this upstream to Wenzel, in...