1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Profile rendering - Don't leave filter quality on undefined, set to low

This commit is contained in:
Robert 2021-04-20 23:59:10 +02:00
parent f3a823644e
commit 2d02dba140
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ namespace Artemis.Core
baseLayerEffect.Update(Timeline.Delta.TotalSeconds);
}
SKPaint layerPaint = new();
SKPaint layerPaint = new() {FilterQuality = SKFilterQuality.Low};
try
{
SKRectI rendererBounds = SKRectI.Create(0, 0, Bounds.Width, Bounds.Height);

View File

@ -364,7 +364,7 @@ namespace Artemis.Core
if (LayerBrush?.BrushType != LayerBrushType.Regular)
return;
SKPaint layerPaint = new();
SKPaint layerPaint = new() {FilterQuality = SKFilterQuality.Low};
try
{
canvas.Save();