Mitja P

Results 37 comments of Mitja P

If I remember correctly this is it. I was waiting for a feedback before removing a `draft` label.

Excluding rarely used headers reduces namespace pollution and improves build time. If one want to use it this library should not stand in the way if possible. Instead of including...

As specified in documentation `timeval` is defined in **`winsock.h`**. It it also recommended to use `Winsock2.h` which is recommended version of this header. https://learn.microsoft.com/en-us/windows/win32/api/winsock/ns-winsock-timeval `Header winsock.h (include Winsock2.h)` I am...

You are correct. I deleted my comment just after posting.

Just transform to linear RGB where you do all the calculations. Then map the final results back to sRGB. https://en.wikipedia.org/wiki/SRGB#Transformation. I'm attaching two images. One is black (#000) and white...

I think this issue could be somehow "managed" with a simple modification. When a `deferred` promise is rejected just destroy the `streamSplitter` to stop accepting more data. ``` promises.push(deferred.catch((error) =>...

I can solve issues with S3 store regarding how it handles errors from S3 provider. Issues with locking mechanism and `CancellationContext` are much larger and would need a separate task...