Skip to content

Commit

Permalink
Merge branch 'feature/regen' of https://github.com/dotnet/Silk.NET in…
Browse files Browse the repository at this point in the history
…to feature/regen
  • Loading branch information
Perksey committed Nov 1, 2024
2 parents 401a905 + 049c772 commit e07cfa9
Show file tree
Hide file tree
Showing 58 changed files with 1,703 additions and 1,625 deletions.
Binary file modified build/cache/assimp.json.gz
Binary file not shown.
Binary file modified build/cache/cl.json.gz
Binary file not shown.
Binary file modified build/cache/core.json.gz
Binary file not shown.
Binary file modified build/cache/d2d.json.gz
Binary file not shown.
Binary file modified build/cache/d3d11.json.gz
Binary file not shown.
Binary file modified build/cache/d3d12.json.gz
Binary file not shown.
Binary file modified build/cache/d3d9.json.gz
Binary file not shown.
Binary file modified build/cache/d3dcompiler.json.gz
Binary file not shown.
Binary file modified build/cache/dcomp.json.gz
Binary file not shown.
Binary file modified build/cache/dstorage.json.gz
Binary file not shown.
Binary file modified build/cache/dwrite.json.gz
Binary file not shown.
Binary file modified build/cache/dxc.json.gz
Binary file not shown.
Binary file modified build/cache/dxgi.json.gz
Binary file not shown.
Binary file modified build/cache/dxva.json.gz
Binary file not shown.
Binary file modified build/cache/gl.json.gz
Binary file not shown.
Binary file modified build/cache/glcore.json.gz
Binary file not shown.
Binary file modified build/cache/gles2.json.gz
Binary file not shown.
Binary file modified build/cache/openxr.json.gz
Binary file not shown.
Binary file modified build/cache/sdl.json.gz
Binary file not shown.
Binary file modified build/cache/shaderc.json.gz
Binary file not shown.
Binary file modified build/cache/spirv-cross.json.gz
Binary file not shown.
Binary file modified build/cache/spirv-reflect.json.gz
Binary file not shown.
Binary file modified build/cache/spirv.json.gz
Binary file not shown.
Binary file modified build/cache/vulkan.json.gz
Binary file not shown.
Binary file modified build/cache/webgpu.json.gz
Binary file not shown.
Binary file modified build/cache/wgl.json.gz
Binary file not shown.
Binary file modified build/cache/wic.json.gz
Binary file not shown.
Binary file modified build/cache/win32extras.json.gz
Binary file not shown.
Binary file modified build/cache/xaudio.json.gz
Binary file not shown.
Binary file modified build/cache/xinput.json.gz
Binary file not shown.
50 changes: 50 additions & 0 deletions src/Assimp/Silk.NET.Assimp/Structs/Buffer.gen.cs
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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Native/Silk.NET.DirectStorage.Native/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.2.3

This file was deleted.

This file was deleted.

This file was deleted.

26 changes: 0 additions & 26 deletions src/OpenGL/Silk.NET.OpenGL.Legacy/Enums/TextureParameter.gen.cs

This file was deleted.

26 changes: 0 additions & 26 deletions src/OpenGL/Silk.NET.OpenGL/Enums/TextureParameter.gen.cs

This file was deleted.

26 changes: 0 additions & 26 deletions src/OpenGL/Silk.NET.OpenGLES/Enums/TextureParameter.gen.cs

This file was deleted.

Loading

0 comments on commit e07cfa9

Please sign in to comment.