Aardworx.WebAssembly 1.2.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aardworx.WebAssembly --version 1.2.2
                    
NuGet\Install-Package Aardworx.WebAssembly -Version 1.2.2
                    
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="Aardworx.WebAssembly" Version="1.2.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aardworx.WebAssembly" Version="1.2.2" />
                    
Directory.Packages.props
<PackageReference Include="Aardworx.WebAssembly" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aardworx.WebAssembly --version 1.2.2
                    
#r "nuget: Aardworx.WebAssembly, 1.2.2"
                    
#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.
#:package Aardworx.WebAssembly@1.2.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aardworx.WebAssembly&version=1.2.2
                    
Install as a Cake Addin
#tool nuget:?package=Aardworx.WebAssembly&version=1.2.2
                    
Install as a Cake Tool

WebXR utilities for Aardvark

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Aardworx.WebAssembly:

Package Downloads
Aardworx.Rendering.WebGL

WebAssembly libraries for Aardvark

Aardworx.WebAssembly.Dom

WebAssembly libraries for Aardvark

Aardworx.WebAssembly.WebXR

WebAssembly libraries for Aardvark

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.8 0 5/20/2026
1.2.7 134 5/18/2026
1.2.6 235 4/28/2026
1.2.5 212 4/26/2026
1.2.4 219 4/26/2026
1.2.3 225 4/26/2026
1.2.2 224 4/26/2026
1.2.1 212 4/25/2026
1.2.0 216 4/25/2026
1.1.14 422 11/6/2025
1.1.13 356 10/22/2025
1.1.12 369 10/16/2025
1.1.11 385 2/22/2025
1.1.10 363 10/21/2024
1.1.9 407 10/19/2024
1.1.8 363 10/1/2024
1.1.7 406 5/13/2024
1.1.6 376 9/27/2023
1.1.5 433 9/27/2023
1.1.4 362 9/25/2023
Loading failed

`IRuntime.ReadPixels(IFramebuffer, ...)` no longer churns a fresh PBO per call:
- reads ≤ 4 KiB (1-pixel picks, small thumbnails) skip the PBO entirely and `glReadPixels` directly into the pinned destination — saves 6+ GL calls per readback
- larger reads use a Device-cached scratch PBO that's lazily created and only ever resized upward (was: GenBuffer / BufferData / DeleteBuffer every call)
macOS Safari (Metal-bridge IPC) hit hardest by the per-call overhead; same-Mac numbers post-fix: 1×1 pick 0.28 ms (Safari) / 0.40 ms (Chrome), 256×256 0.87 ms / 1.09 ms — Safari now actually faster than Chrome on Mac
added `readpixels benchmark` test that measures and reports timings per readback size; useful for spotting regressions across browsers