Sergey Yagovtsev

Results 25 comments of Sergey Yagovtsev

I've check fix on linux and macos. Problem was related to unclosed socket on connection failure. Can anybody check it on windows? But I think it's fixed also on windows

I think it's necessary another type of block for GPU-timing. As far as I know gpu time measure in OpenGL needs call `glBeginQuery...` and after swap buffering (or similar) `glEndQuery`....

Hello! Thank you for feedback! Try to add definition for compiler: `BUILD_WITH_EASY_PROFILER=1` (do not forget add `-D` in case of command line) This macro added by CMake. See [docs](https://github.com/yse/easy_profiler#general) (section...

@avlbanuba thanks for investigation and an information! We need to get some help with this issue

When we start this project the main purpose was to create _extremely_ small memory usage tool (both RAM usage and profiling result at hard disk usage). In case of some...

@rationalcoder yes, of course. Evidently current API is not so suitable for understanding :-| There is only one function with no clear parameters. I think API will be improved with...

@mmatrosov thank you for feedback! We have an experimental tool (see PR #87) for generating json-formatted report. I think it will be merged in near future and you will be...

@mmatrosov we have merged command line tool. For converting to json format you should checkout new develop, build it and run `profiler_converter` like: ```bash ./bin/profiler_converter INPUT_PROF_FILE ``` and it will...

Hi! There is not easy_profiler's port for python unfortunately but I think relaunch support for the library with some roadmap. So I want to know some use cases to focus...

Hello! Thank you for the valuable feedback 🙏 I've been fixed the bug by adding safety advancing of the iterator and ensure range for this You are welcome to ask...