I think an additional test like this colorwheel should be implemented for the sync.monitor.
After having implemented the X11 support, I ran the colorwheel test and noticed that sometimes the colors are on the wrong sides (all individual colors are correct).
To check this, I looked at dxcam where the output is RGB, and the output of the mss is BGRA where I removed A and reversed the order
screen = np.array(screen)[..., [2, 1, 0]]
However, in the video some of the colors seems to be on opposite sites. With the full screen color test this was not the case.
Maybe there is some reversion of happening somewhere? Or is the RGB format the expected output for the PIL.Image.Image?
I think an additional test like this colorwheel should be implemented for the
sync.monitor.After having implemented the X11 support, I ran the colorwheel test and noticed that sometimes the colors are on the wrong sides (all individual colors are correct).
To check this, I looked at
dxcamwhere the output is RGB, and the output of themssis BGRA where I removed A and reversed the orderHowever, in the video some of the colors seems to be on opposite sites. With the full screen color test this was not the case.
Maybe there is some reversion of happening somewhere? Or is the RGB format the expected output for the
PIL.Image.Image?