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:
parent
f3a823644e
commit
2d02dba140
@ -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);
|
||||
|
||||
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user