Skip to content

Commit bdc53f5

Browse files
Fix tests
1 parent 1dbfdb2 commit bdc53f5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/SixLabors.Fonts.Tests/ColorGlyphRenderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class ColorGlyphRenderer : GlyphRenderer
1111
{
1212
public List<GlyphColor> Colors { get; } = new List<GlyphColor>();
1313

14-
public override void BeginLayer(Paint paint, FillRule fillRule, in ClipQuad? clipBounds)
14+
public override void BeginLayer(Paint paint, FillRule fillRule, ClipQuad? clipBounds)
1515
{
1616
if (paint is SolidPaint solidPaint)
1717
{

tests/SixLabors.Fonts.Tests/GlyphRenderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void SetDecoration(TextDecorations textDecorations, Vector2 start, Vector
8484
{
8585
}
8686

87-
public virtual void BeginLayer(Paint paint, FillRule fillRule, in ClipQuad? clipBounds)
87+
public virtual void BeginLayer(Paint paint, FillRule fillRule, ClipQuad? clipBounds)
8888
{
8989
}
9090

tests/SixLabors.Fonts.Tests/Issues/Issues_383.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void SetDecoration(TextDecorations textDecorations, Vector2 start, Vector
9696
{
9797
}
9898

99-
public void BeginLayer(Paint paint, FillRule fillRule, in ClipQuad? clipBounds)
99+
public void BeginLayer(Paint paint, FillRule fillRule, ClipQuad? clipBounds)
100100
{
101101
}
102102

tests/SixLabors.Fonts.Tests/TextLayoutTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ public void SetDecoration(TextDecorations textDecorations, Vector2 start, Vector
12891289
{
12901290
}
12911291

1292-
public void BeginLayer(Paint paint, FillRule fillRule, in ClipQuad? clipBounds)
1292+
public void BeginLayer(Paint paint, FillRule fillRule, ClipQuad? clipBounds)
12931293
{
12941294
}
12951295

0 commit comments

Comments
 (0)