Nikolay Vabishchevich
Nikolay Vabishchevich
This is a part of my version of the checkasm branch. I decided to split it into several PRs for ease of reviewing. This part is mostly preliminary refactoring.
This is my follow-up to the relevant IRC discussion: how I think resolution-independence should be achieved. Also I think this can be a good place for a more persistent discussion...
This is my version of PR https://github.com/libass/libass/pull/329. I've updated visual quality assessment tests (more tests, better reference target) and checked additional parameter values, so the table now looks the following:...
Libass has too many redundant include directives, so I attempted to fix that.
I've encountered slow subtitle rendering due to slow parse_tag(). This patch attempts to fix that issue.
I have unexpected results with fairly complex usage of `MPI_File_set_view`. With some experimenting I managed to minimize test case to this: ```c++ #include #include inline void check_error(int err) { if(!err)return;...
That variant requires only one division instead of two in the usual case of small `bound`. Even in the worst case of `bound = 2^31+1` average number of divisions will...
I'm using generic meshing interface by creating derivative class from `netgen::NetgenGeometry`. It works reasonable well, but in the case of partial failure in some early stages netgen frequently crashes. I've...
Сейчас для управления нитро используется тот же `robot.action.target_velocity` что и для перемещения по земле. Это неудобно по двум причинам: * Переход между скольжением и полетом не мгновенный (2 микротика), поэтому...
I've tried to trigger all necessary colorspace conversions. It works on several samples that I created, but it certainly not a full set of possible PNG variants. So, more testing...