-
-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/regen' into ci/feature/regen/assimp_bins
- Loading branch information
Showing
59 changed files
with
1,778 additions
and
1,471 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
|
||
using System; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.CompilerServices; | ||
using System.Text; | ||
using Silk.NET.Core; | ||
using Silk.NET.Core.Native; | ||
using Silk.NET.Core.Attributes; | ||
using Silk.NET.Core.Contexts; | ||
using Silk.NET.Core.Loader; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.Assimp | ||
{ | ||
[NativeName("Name", "aiBuffer")] | ||
public unsafe partial struct Buffer | ||
{ | ||
public Buffer | ||
( | ||
byte* data = null, | ||
byte* end = null | ||
) : this() | ||
{ | ||
if (data is not null) | ||
{ | ||
Data = data; | ||
} | ||
|
||
if (end is not null) | ||
{ | ||
End = end; | ||
} | ||
} | ||
|
||
|
||
[NativeName("Type", "const char *")] | ||
[NativeName("Type.Name", "const char *")] | ||
[NativeName("Name", "data")] | ||
public byte* Data; | ||
|
||
[NativeName("Type", "const char *")] | ||
[NativeName("Type.Name", "const char *")] | ||
[NativeName("Name", "end")] | ||
public byte* End; | ||
} | ||
} |
Binary file modified
BIN
+20 KB
(100%)
src/Native/Silk.NET.Assimp.Native/runtimes/osx-arm64/native/libassimp.5.dylib
Binary file not shown.
Binary file modified
BIN
+27.9 KB
(100%)
src/Native/Silk.NET.Assimp.Native/runtimes/osx-x64/native/libassimp.5.dylib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/Native/Silk.NET.Assimp.Native/runtimes/win-arm64/native/Assimp64.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/Native/Silk.NET.Assimp.Native/runtimes/win-x64/native/Assimp64.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/Native/Silk.NET.Assimp.Native/runtimes/win-x86/native/Assimp32.dll
Binary file not shown.
Binary file modified
BIN
-112 Bytes
(100%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-arm64/native/dstorage.dll
Binary file not shown.
Binary file modified
BIN
-12.6 KB
(99%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-arm64/native/dstoragecore.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-x64/native/dstorage.dll
Binary file not shown.
Binary file modified
BIN
-10.5 KB
(99%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-x64/native/dstoragecore.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-x86/native/dstorage.dll
Binary file not shown.
Binary file modified
BIN
-7.61 KB
(99%)
src/Native/Silk.NET.DirectStorage.Native/runtimes/win-x86/native/dstoragecore.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.2.2 | ||
1.2.3 |
Oops, something went wrong.