Michał Witanowski

Results 15 comments of Michał Witanowski

phase 1: https://review.gerrithub.io/#/c/263679/

Maybe just put all test files in some "TestData" folder and modify python script so it's always removed after running the tests?

It's not finished completely - there are still parts of code where doxy comments are missing.

1. If Windows SEH can be done as easly as signal catchig in Linux, then OK. 2. No, stacktrace is not implemented yet.

This can be useful: https://randomascii.wordpress.com/2012/07/22/more-adventures-in-failing-to-crash-properly/

https://review.gerrithub.io/#/c/243457/

First two commits introducing FileSystem and File classes: https://review.gerrithub.io/#/c/217602/ https://review.gerrithub.io/#/c/217603/

There is no point in creating classes deriving after Image to handle specific image file formats. Image class is just a container for image data in specific pixel format, divided...

@mkulagowski No, it's because performance. std::string uses memory allocation, which we should avoid. For example, at https://github.com/nfprojects/nfengine/blob/devel/nfEngine/nfCore/Mesh.cpp#L107 we could use simple C-string to concatenate the path (the string would be...