Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/nuget/main/xunit.runner.visualstu…
Browse files Browse the repository at this point in the history
…dio-2.5.4
  • Loading branch information
Perksey authored Dec 12, 2023
2 parents 2a50d37 + bc7d8a0 commit 1334d59
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bindings-regeneration.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Bindings Regeneration

on:
schedule:
- cron: '0 0 * * Fri'
#schedule: - disabled for now
# - cron: '0 0 * * Fri'
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
submodules: 'false'
- name: Clone submodules non-recursively
run: git submodule update --init --depth 0
- name: Setup Java JDK 11
- name: Setup Java JDK 21
uses: actions/[email protected]
with:
java-version: 11
java-version: 21
distribution: "temurin"
- name: Setup Android Environment
uses: android-actions/setup-android@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ namespace Silk.NET.OpenAL.Extensions.Soft
/// </summary>
[NativeApi(Prefix = "alc")]
[Extension("ALC_SOFT_reopen_device")]
public partial class ReopenDevices : NativeExtension<AL>
public partial class ReopenDevices : ContextExtensionBase
{
/// <inheritdoc cref="ExtensionBase" />
/// <inheritdoc cref="ContextExtensionBase" />
public ReopenDevices(INativeContext ctx)
: base(ctx)
{
Expand Down
1 change: 1 addition & 0 deletions src/OpenAL/Silk.NET.OpenAL.Tests/ExtensionLoadingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ void Test<T>() where T:NativeExtension<ALContext>
Test<CaptureEnumerationEnumeration>();
Test<EffectExtensionContext>();
Test<Disconnect>();
Test<ReopenDevices>();

SilkMarshal.Free(loaderPtr);
SilkMarshal.Free(ctxLoaderPtr);
Expand Down

0 comments on commit 1334d59

Please sign in to comment.