OpenTK.Audio.OpenAL 5.0.0-pre.13

Prefix Reserved
This is a prerelease version of OpenTK.Audio.OpenAL.
dotnet add package OpenTK.Audio.OpenAL --version 5.0.0-pre.13                
NuGet\Install-Package OpenTK.Audio.OpenAL -Version 5.0.0-pre.13                
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="OpenTK.Audio.OpenAL" Version="5.0.0-pre.13" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenTK.Audio.OpenAL --version 5.0.0-pre.13                
#r "nuget: OpenTK.Audio.OpenAL, 5.0.0-pre.13"                
#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 OpenTK.Audio.OpenAL as a Cake Addin
#addin nuget:?package=OpenTK.Audio.OpenAL&version=5.0.0-pre.13&prerelease

// Install OpenTK.Audio.OpenAL as a Cake Tool
#tool nuget:?package=OpenTK.Audio.OpenAL&version=5.0.0-pre.13&prerelease                

OpenAL bindings for dotnet from the Khronos OpenAL C library.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on OpenTK.Audio.OpenAL:

Package Downloads
OpenTK

The Open Toolkit is set of fast, low-level C# bindings for OpenGL, OpenGL ES, OpenAL and OpenCL. It runs on all major platforms and powers hundreds of apps, games and scientific research. It provides bindings for GLFW windowing, input and a game loop, and is the perfect start for your own game engine. OpenTK comes with simple and easy to follow tutorials for learning *modern* OpenGL. These are written by the community and represent all of the best practices to get you started. Learn how to use OpenTK here: https://opentk.net/learn/index.html Sample projects that accompany the tutorial can be found here: https://github.com/opentk/LearnOpenTK We have a very active discord server, if you need help, want to help, or are just curious, come join us! https://discord.gg/6HqD48s

SharpGDX.Desktop

C# Port of Java's libGDX (Desktop).

FxEngine

3D game engine

Eyu.Audio

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on OpenTK.Audio.OpenAL:

Repository Stars
GreemDev/Ryujinx
Experimental Switch emulator written in C#
ryujinx-mirror/ryujinx
Hard-fork of the Ryujinx project
Synthlight/Ryujinx
Mirror of https://github.com/Ryujinx/Ryujinx
Version Downloads Last updated
5.0.0-pre.13 91 11/11/2024
5.0.0-pre.12 1,532 9/25/2024
5.0.0-pre.11 1,581 8/9/2024
5.0.0-pre.10 4,832 3/7/2024
5.0.0-pre.9 3,883 10/16/2023
4.8.2 182,219 12/2/2023
4.8.1 27,960 9/27/2023
4.8.0 31,868 7/17/2023

Changed `MarshalTk.MarshalStringArrayToAnsiStringArrayPtr` to take `ReadOnlySpan&lt;string&gt;` instead of `Span&lt;string&gt;`. (@NogginBops)
Vulkan bindings changes**:
Add default parameterless constructor to all Vulkan structs so that default member values can be applied (mostly to automatically set `sType`). (@NogginBops)
Made the Vulkan example project render a triangle. (@NogginBops)
OpenGL bindings changes**:
Skip `ref readonly` for singular `Delete*()` functions. (@NogginBops)
Added generated EGL bindings containing all EGL and ANGLE extensions. (@NogginBops)
Fixed missing documentation on some OpenGL functions. (@NogginBops)
PAL2 changes**:
A lot of documentation improvements. (@NogginBops)
Added `Toolkit.Window.Get/SetTransparencyMode` to support different modes for window transparency. (@NogginBops)
Add `reason` parameter to `Toolkit.Shell.AllowScreenSaver`. (@NogginBops)
Add `Toolkit.Shell.IsScreenSaverAllowed` to be able to check if the screen saver is disabled. (@NogginBops)
Added `OpenGLGraphicsApiHints.SupportsTransparentFramebufferX11` to mark if the context values selector should look for formats that support framebuffer transparency when on X11 (framebuffer transparency is always supported on Windows and macOS). (@NogginBops)
Added `ContextValues.SupportsFramebufferTransparency` to check if a particular format supports framebuffer transparency (only relevant on X11). (@NogginBops)
Updated `ContextValues.DefaultValuesSelector` to handle `SupportsFramebufferTransparency`. (@NogginBops)
Added `Toolkit.Uninit()` for usecases where unloading OpenTK is useful (don't call this function on application exit). (@NogginBops)
Added `IPalComponent.Uninitialize()` and implemented it for every component on every platform to make `Toolkit.Uninit()` possible. (@NogginBops)
win32:
macOS:
Implement `MacOSVulkanComponent` using MoltenVK. (@NogginBops)
Made dialogs proper window sheets by default. (@NogginBops)
Added `MacOSDialogComponent.Show*NoWindow` functions for showing dialogs not attached to any window. (@NogginBops)
x11:
Fixed glX dll resolution to be the same as before 5.0-pre.12 (@NogginBops)
Fixed memory leak in `X11KeyboardComponent`. (@NogginBops)
ANGLE:
Switched implementation to use the generated EGL bindings. (@NogginBops)