Aardworx.WebAssembly.Dom
1.2.2
See the version list below for details.
dotnet add package Aardworx.WebAssembly.Dom --version 1.2.2
NuGet\Install-Package Aardworx.WebAssembly.Dom -Version 1.2.2
<PackageReference Include="Aardworx.WebAssembly.Dom" Version="1.2.2" />
<PackageVersion Include="Aardworx.WebAssembly.Dom" Version="1.2.2" />
<PackageReference Include="Aardworx.WebAssembly.Dom" />
paket add Aardworx.WebAssembly.Dom --version 1.2.2
#r "nuget: Aardworx.WebAssembly.Dom, 1.2.2"
#:package Aardworx.WebAssembly.Dom@1.2.2
#addin nuget:?package=Aardworx.WebAssembly.Dom&version=1.2.2
#tool nuget:?package=Aardworx.WebAssembly.Dom&version=1.2.2
WebAssembly libraries for Aardvark
| Product | Versions 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. |
-
- Aardvark.Application (>= 5.6.4 && < 5.7.0)
- Aardvark.Base (>= 5.3.21 && < 5.4.0)
- Aardvark.Base.FSharp (>= 5.3.21 && < 5.4.0)
- Aardvark.Dom.Elm (>= 1.1.0 && < 1.2.0)
- Aardvark.Dom.Remote (>= 1.1.0 && < 1.2.0)
- Aardworx.Rendering.WebGL (= 1.2.2)
- Aardworx.WebAssembly (= 1.2.2)
- FSharp.Core (>= 8.0.300)
- FSharp.Data.Adaptive (>= 1.2.26 && < 1.3.0)
- Microsoft.AspNetCore.Components.WebAssembly (>= 8.0.26 && < 8.1.0)
- Microsoft.AspNetCore.Components.WebAssembly.DevServer (>= 8.0.26 && < 8.1.0)
- Silk.NET.OpenGLES (>= 2.15.0 && < 2.16.0)
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.2.8 | 80 | 5/20/2026 |
| 1.2.7 | 103 | 5/18/2026 |
| 1.2.6 | 103 | 4/28/2026 |
| 1.2.5 | 101 | 4/26/2026 |
| 1.2.4 | 94 | 4/26/2026 |
| 1.2.3 | 96 | 4/26/2026 |
| 1.2.2 | 107 | 4/26/2026 |
| 1.2.1 | 93 | 4/25/2026 |
| 1.2.0 | 93 | 4/25/2026 |
| 1.1.14 | 313 | 11/6/2025 |
| 1.1.13 | 240 | 10/22/2025 |
| 1.1.12 | 249 | 10/16/2025 |
| 1.1.11 | 248 | 2/22/2025 |
| 1.1.10 | 226 | 10/21/2024 |
| 1.1.9 | 283 | 10/19/2024 |
| 1.1.8 | 223 | 10/1/2024 |
| 1.1.7 | 253 | 5/13/2024 |
| 1.1.6 | 266 | 9/27/2023 |
| 1.1.5 | 250 | 9/27/2023 |
| 1.1.4 | 234 | 9/25/2023 |
`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