using System.Collections.Generic; using Avalonia.Platform; namespace Avalonia.Benchmarks { internal class NullGlyphRun : IGlyphRunImpl { public Size Size => default; public Point BaselineOrigin => default; public void Dispose() { } public IReadOnlyList GetIntersections(float lowerBound, float upperBound) { return null; } } }