Aardworx.WebAssembly
1.2.7
See the version list below for details.
dotnet add package Aardworx.WebAssembly --version 1.2.7
NuGet\Install-Package Aardworx.WebAssembly -Version 1.2.7
<PackageReference Include="Aardworx.WebAssembly" Version="1.2.7" />
<PackageVersion Include="Aardworx.WebAssembly" Version="1.2.7" />
<PackageReference Include="Aardworx.WebAssembly" />
paket add Aardworx.WebAssembly --version 1.2.7
#r "nuget: Aardworx.WebAssembly, 1.2.7"
#:package Aardworx.WebAssembly@1.2.7
#addin nuget:?package=Aardworx.WebAssembly&version=1.2.7
#tool nuget:?package=Aardworx.WebAssembly&version=1.2.7
WebXR utilities 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.Core (>= 1.1.8 && < 1.2.0)
- Aardworx.AsyncPrimitives (= 1.2.7)
- 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)
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 | 85 | 5/20/2026 |
| 1.2.7 | 215 | 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 | 225 | 4/26/2026 |
| 1.2.1 | 213 | 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 |
the WebGL canvas now honors `window.devicePixelRatio` by default — the backbuffer is sized as `round(cssSize * devicePixelRatio)` instead of `round(cssSize)`. Previously every swap chain (FXAA / Simple / MSAA) hardcoded a 1.0 ratio, so HiDPI / Retina displays (iPhone DPR=3, MacBook Retina DPR=2) got a CSS-pixel backbuffer that the browser then upscaled — visibly blurry. Fix is at the swap-chain level so it applies to every consumer of `WebGLApplication.CreateRenderControl`.
added `WebGLSwapChain.PixelRatio : option<float>` (and `EffectivePixelRatio` for the actual value used) plus a matching `WebGLRenderControl.PixelRatio` property. `None` (the default) uses `Window.DevicePixelRatio`. `Some 1.0` opts out of HiDPI scaling and renders at CSS resolution. `Some r` for any other override. Setter invalidates the control so the change takes effect on the next frame; the resize-checker also reads through `EffectivePixelRatio` so DPR changes (window moved between monitors) are picked up.
exposed the knob on the Aardvark.Dom surface as `RenderControl.PixelRatio(ratio : float)` — emits a `data-pixel-ratio` attribute on the parent div; `Aardworx.WebAssembly.Dom.Boot.SetupRenderer` reads it once at init and applies it to `ctrl.PixelRatio`. Omit the attribute for the full-res default.
picked up Aardvark.Dom 1.1.8.