SkiaSharpDisplayList 1.0.0.1

dotnet add package SkiaSharpDisplayList --version 1.0.0.1
NuGet\Install-Package SkiaSharpDisplayList -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SkiaSharpDisplayList" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SkiaSharpDisplayList --version 1.0.0.1
#r "nuget: SkiaSharpDisplayList, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SkiaSharpDisplayList as a Cake Addin
#addin nuget:?package=SkiaSharpDisplayList&version=1.0.0.1

// Install SkiaSharpDisplayList as a Cake Tool
#tool nuget:?package=SkiaSharpDisplayList&version=1.0.0.1

A simple display list for SkiaSharp

Product Compatible and additional computed target framework versions.
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.1 763 12/18/2018
1.0.0 682 12/14/2018

A simple display list implementation for SkiaSharp that's similar to the Adobe Flash/Starling Display List approach.

The hierarchical structure of display lists have the following benefits:
More efficient rendering and reduced memory usage
, Improved depth management
, Full traversal of the display list
, Off-list display objects
-Easier subclassing of display objects.

The current release is very rudimentary, but is probably usable for simple User Interface scenarios; with the goal being a "platform" for advanced UI and perhaps 2D games with continued optimization and feature addition.
The SkiaSharp.DisplayList package is decoupled from any platform view and only requires a valid SKCanvas each update to work its magic.