Open danwalmsley opened 3 years ago
Description
Seems to be caused by.. https://bugs.chromium.org/p/skia/issues/detail?id=12164#c5
example of bug can be seen here:
https://github.com/AvaloniaUI/Avalonia/issues/6144
This only happens on apple sillicon gpus, and some nvidia 3000 series GPUs.
It looks like the fix wasnt merged into skia until July so probably we cant fix this until m9x.
Any ideas on a way to work around this?
SkPaint.IsAntiAliased = false does resolve the clipping issue, but at the cost of poor quality rendering.
ok a workaround:
new GRContextOptions { AvoidStencilBuffers = true }
Description
Seems to be caused by.. https://bugs.chromium.org/p/skia/issues/detail?id=12164#c5
example of bug can be seen here:
https://github.com/AvaloniaUI/Avalonia/issues/6144
This only happens on apple sillicon gpus, and some nvidia 3000 series GPUs.
It looks like the fix wasnt merged into skia until July so probably we cant fix this until m9x.
Any ideas on a way to work around this?
SkPaint.IsAntiAliased = false does resolve the clipping issue, but at the cost of poor quality rendering.