Skip to content

Commit 8aefc51

Browse files
committed
Regenerate bindings on Windows
1 parent 53fbdd3 commit 8aefc51

File tree

269 files changed

+5335
-5502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+5335
-5502
lines changed

.silktouch/2b50d7d447412fec.stout

-3.81 KB
Binary file not shown.

.silktouch/72b687a9cceac28c.stout

5 Bytes
Binary file not shown.

.silktouch/82fde6eb3b68e085.stout

-12.6 KB
Binary file not shown.

.silktouch/c8c046b328b09d23.stout

10 Bytes
Binary file not shown.

sources/OpenAL/OpenAL/al/AL.gen.cs

Lines changed: 287 additions & 287 deletions
Large diffs are not rendered by default.

sources/OpenAL/OpenAL/al/ALContext.gen.cs

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public static extern void GetInteger64SOFT(
241241
DeviceHandle device,
242242
int pname,
243243
int size,
244-
nint* values
244+
long* values
245245
);
246246

247247
[NativeName("alcGetInteger64vSOFT")]
@@ -257,10 +257,10 @@ public static void GetInteger64SOFT(
257257
DeviceHandle device,
258258
int pname,
259259
int size,
260-
Ref<nint> values
260+
Ref<long> values
261261
)
262262
{
263-
fixed (nint* __dsl_values = values)
263+
fixed (long* __dsl_values = values)
264264
{
265265
GetInteger64SOFT(device, pname, size, __dsl_values);
266266
}
@@ -272,10 +272,10 @@ Ref<nint> values
272272
SupportedApiProfile("alc", ["ALC_SOFT_device_clock"])
273273
]
274274
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
275-
public static nint GetInteger64SOFT(DeviceHandle device, int pname)
275+
public static long GetInteger64SOFT(DeviceHandle device, int pname)
276276
{
277-
nint values = default;
278-
GetInteger64SOFT(device, pname, 1, (nint*)&values);
277+
long values = default;
278+
GetInteger64SOFT(device, pname, 1, (long*)&values);
279279
return values;
280280
}
281281

@@ -862,7 +862,7 @@ public Constant<int, ALCEnum, ContextErrorCode> GetError(DeviceHandle device) =>
862862
[MethodImpl(
863863
MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization
864864
)]
865-
public void GetInteger64SOFT(DeviceHandle device, int pname, int size, nint* values) =>
865+
public void GetInteger64SOFT(DeviceHandle device, int pname, int size, long* values) =>
866866
T.GetInteger64SOFT(device, pname, size, values);
867867

868868
[NativeName("alcGetInteger64vSOFT")]
@@ -874,7 +874,7 @@ public void GetInteger64SOFT(DeviceHandle device, int pname, int size, nint* val
874874
[MethodImpl(
875875
MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization
876876
)]
877-
public void GetInteger64SOFT(DeviceHandle device, int pname, int size, Ref<nint> values) =>
877+
public void GetInteger64SOFT(DeviceHandle device, int pname, int size, Ref<long> values) =>
878878
T.GetInteger64SOFT(device, pname, size, values);
879879

880880
[NativeName("alcGetInteger64vSOFT")]
@@ -886,7 +886,7 @@ public void GetInteger64SOFT(DeviceHandle device, int pname, int size, Ref<nint>
886886
[MethodImpl(
887887
MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization
888888
)]
889-
public nint GetInteger64SOFT(DeviceHandle device, int pname) =>
889+
public long GetInteger64SOFT(DeviceHandle device, int pname) =>
890890
T.GetInteger64SOFT(device, pname);
891891

892892
[NativeName("alcGetIntegerv")]
@@ -1499,7 +1499,7 @@ public static void GetInteger64SOFT(
14991499
DeviceHandle device,
15001500
int pname,
15011501
int size,
1502-
nint* values
1502+
long* values
15031503
) => Underlying.Value!.GetInteger64SOFT(device, pname, size, values);
15041504

15051505
[NativeName("alcGetInteger64vSOFT")]
@@ -1515,10 +1515,10 @@ public static void GetInteger64SOFT(
15151515
DeviceHandle device,
15161516
int pname,
15171517
int size,
1518-
Ref<nint> values
1518+
Ref<long> values
15191519
)
15201520
{
1521-
fixed (nint* __dsl_values = values)
1521+
fixed (long* __dsl_values = values)
15221522
{
15231523
GetInteger64SOFT(device, pname, size, __dsl_values);
15241524
}
@@ -1533,10 +1533,10 @@ Ref<nint> values
15331533
[MethodImpl(
15341534
MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization
15351535
)]
1536-
public static nint GetInteger64SOFT(DeviceHandle device, int pname)
1536+
public static long GetInteger64SOFT(DeviceHandle device, int pname)
15371537
{
1538-
nint values = default;
1539-
GetInteger64SOFT(device, pname, 1, (nint*)&values);
1538+
long values = default;
1539+
GetInteger64SOFT(device, pname, 1, (long*)&values);
15401540
return values;
15411541
}
15421542

@@ -1906,7 +1906,7 @@ public static void SuspendContext(ContextHandle context) =>
19061906
}
19071907

19081908
[NativeName("ALC_CPLUSPLUS")]
1909-
public const nint Cplusplus = 201703;
1909+
public const int Cplusplus = 201402;
19101910

19111911
[NativeName("ALC_VERSION_0_1")]
19121912
[SupportedApiProfile("alc", ["ALC_VERSION_1_0", "ALC_VERSION_1_1"], MinVersion = "1.0")]
@@ -2471,9 +2471,9 @@ _slots[16] is not null and var loadedFnPtr
24712471
]
24722472
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
24732473
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
2474-
void IALContext.GetInteger64SOFT(DeviceHandle device, int pname, int size, nint* values) =>
2474+
void IALContext.GetInteger64SOFT(DeviceHandle device, int pname, int size, long* values) =>
24752475
(
2476-
(delegate* unmanaged<DeviceHandle, int, int, nint*, void>)(
2476+
(delegate* unmanaged<DeviceHandle, int, int, long*, void>)(
24772477
_slots[17] is not null and var loadedFnPtr
24782478
? loadedFnPtr
24792479
: _slots[17] = nativeContext.LoadFunction("alcGetInteger64vSOFT", "openal")
@@ -2487,7 +2487,7 @@ _slots[17] is not null and var loadedFnPtr
24872487
]
24882488
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
24892489
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
2490-
public static void GetInteger64SOFT(DeviceHandle device, int pname, int size, nint* values) =>
2490+
public static void GetInteger64SOFT(DeviceHandle device, int pname, int size, long* values) =>
24912491
ThisThread.GetInteger64SOFT(device, pname, size, values);
24922492

24932493
[NativeName("alcGetInteger64vSOFT")]
@@ -2497,9 +2497,9 @@ public static void GetInteger64SOFT(DeviceHandle device, int pname, int size, ni
24972497
]
24982498
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
24992499
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
2500-
void IALContext.GetInteger64SOFT(DeviceHandle device, int pname, int size, Ref<nint> values)
2500+
void IALContext.GetInteger64SOFT(DeviceHandle device, int pname, int size, Ref<long> values)
25012501
{
2502-
fixed (nint* __dsl_values = values)
2502+
fixed (long* __dsl_values = values)
25032503
{
25042504
((IALContext)this).GetInteger64SOFT(device, pname, size, __dsl_values);
25052505
}
@@ -2516,7 +2516,7 @@ public static void GetInteger64SOFT(
25162516
DeviceHandle device,
25172517
int pname,
25182518
int size,
2519-
Ref<nint> values
2519+
Ref<long> values
25202520
) => ThisThread.GetInteger64SOFT(device, pname, size, values);
25212521

25222522
[NativeName("alcGetInteger64vSOFT")]
@@ -2526,10 +2526,10 @@ Ref<nint> values
25262526
]
25272527
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
25282528
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
2529-
nint IALContext.GetInteger64SOFT(DeviceHandle device, int pname)
2529+
long IALContext.GetInteger64SOFT(DeviceHandle device, int pname)
25302530
{
2531-
nint values = default;
2532-
((IALContext)this).GetInteger64SOFT(device, pname, 1, (nint*)&values);
2531+
long values = default;
2532+
((IALContext)this).GetInteger64SOFT(device, pname, 1, (long*)&values);
25332533
return values;
25342534
}
25352535

@@ -2540,7 +2540,7 @@ nint IALContext.GetInteger64SOFT(DeviceHandle device, int pname)
25402540
]
25412541
[NativeFunction("openal", EntryPoint = "alcGetInteger64vSOFT")]
25422542
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
2543-
public static nint GetInteger64SOFT(DeviceHandle device, int pname) =>
2543+
public static long GetInteger64SOFT(DeviceHandle device, int pname) =>
25442544
ThisThread.GetInteger64SOFT(device, pname);
25452545

25462546
[NativeName("alcGetIntegerv")]

0 commit comments

Comments
 (0)