@matjash/pixi-native-win32-x64 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRD_PARTY_NOTICES.md +7 -6
- package/native/audio/dist/win32-x64/native_audio.node +0 -0
- package/native/audio/src/audio_impl.rs +1249 -0
- package/native/audio/src/lib.rs +2 -1517
- package/native/gpu/dist/win32-x64/pixi_native_gpu.node +0 -0
- package/native/gpu/src/index.d.ts +3 -1
- package/native/window/dist/win32-x64/SDL3.dll +0 -0
- package/native/window/dist/win32-x64/native_window.node +0 -0
- package/native/window/src/index.d.ts +54 -8
- package/native/window/src/index.js +80 -11
- package/native/window/src/key-mapping.js +32 -0
- package/native/window/src/lib.rs +658 -46
- package/package.json +1 -1
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -8,14 +8,15 @@ their own license terms.
|
|
|
8
8
|
Pixi Native uses these projects through direct packages or native integration:
|
|
9
9
|
|
|
10
10
|
- [PixiJS](https://pixijs.com/) for the rendering API and scene graph
|
|
11
|
-
- [
|
|
12
|
-
[
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
- [webgl-node](https://github.com/monteslu/webgl-node) and
|
|
12
|
+
[native-gles](https://github.com/monteslu/native-gles) for the WebGL2 facade
|
|
13
|
+
and OpenGL ES call table
|
|
14
|
+
- [SDL 3](https://www.libsdl.org/) through the `sdl3-sys` Rust bindings for native windows,
|
|
15
|
+
input, and display information
|
|
15
16
|
- [@napi-rs/canvas](https://github.com/Brooooooklyn/canvas) for Canvas2D, text,
|
|
16
17
|
and image decoding
|
|
17
18
|
- [napi-rs](https://napi.rs/) for the Rust native addons
|
|
18
|
-
- [
|
|
19
|
+
- [miniaudio](https://miniaud.io/) through `maudio` for native audio output
|
|
19
20
|
- [FFmpeg](https://ffmpeg.org/) for video probing, decoding, and streamed audio
|
|
20
21
|
|
|
21
22
|
The installed packages and their upstream repositories contain their copyright
|
|
@@ -56,7 +57,7 @@ The pinned Dawn source contains more third-party notices in its upstream
|
|
|
56
57
|
## Rust native-addon dependencies
|
|
57
58
|
|
|
58
59
|
The native window, audio, and video binaries include napi-rs and, where used,
|
|
59
|
-
|
|
60
|
+
miniaudio, `maudio`, and windows-rs. The checked-in Cargo lockfiles record their
|
|
60
61
|
exact versions. Each crate remains subject to its upstream license.
|
|
61
62
|
|
|
62
63
|
## Microsoft D3DCompiler
|
|
Binary file
|