HowToExpect

Results 9 comments of HowToExpect

No, plutovg is also fast, but if you see blend2D using SIMD, it will be faster

`#include #include "blockingconcurrentqueue.h" using namespace std; using namespace moodycamel; void timeCallback() { system("date -s 2022-03-01"); } int main() { BlockingConcurrentQueue queue; // current time 2022-03-21 int value = 0; queue.wait_dequeue_timed(value,...

I went to check the relevant information and it really has something to do with CLOCK_REALTIME

I checked that my glibc is 2.25, so sem_clockwait is not supported, so only pthread_mutex_t and pthread_cond_t can be used to implement semaphores

pthread_cond_timedwait() with CLOCK_MONOTONIC is supported

pthread_mutex_t and pthread_cond_t are semaphores that I see in poco

![2](https://user-images.githubusercontent.com/101079181/159234352-f43ec958-9710-42a7-b770-03cf01c320dd.png) ![3](https://user-images.githubusercontent.com/101079181/159234355-ecb42bb6-bbb6-4f12-a713-a6655933f940.png)

![3](https://user-images.githubusercontent.com/101079181/159234924-47b1374b-a7c1-4aa6-8d62-6d01eb312d2b.png) ![2](https://user-images.githubusercontent.com/101079181/159234930-b0aef3ff-7a35-4e8f-a3e7-9ef39922d257.png)

I seem to have the same problem as you, I use OpencV to save pictures and BLImage to save pictures, the pixel values of the two pictures are different, you...