Skip to content

Commit 943f5bd

Browse files
committed
Revert invalid submodule reference updates
1 parent 9d2c8ae commit 943f5bd

Some content is hidden

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

49 files changed

+195
-5
lines changed

build/cache/assimp.json.gz

0 Bytes
Binary file not shown.

build/cache/cl.json.gz

-97.1 KB
Binary file not shown.

build/cache/core.json.gz

0 Bytes
Binary file not shown.

build/cache/d2d.json.gz

0 Bytes
Binary file not shown.

build/cache/d3d11.json.gz

0 Bytes
Binary file not shown.

build/cache/d3d12.json.gz

-41.5 KB
Binary file not shown.

build/cache/d3d9.json.gz

0 Bytes
Binary file not shown.

build/cache/d3dcompiler.json.gz

-1.32 KB
Binary file not shown.

build/cache/dcomp.json.gz

-2.15 KB
Binary file not shown.

build/cache/dstorage.json.gz

-25 Bytes
Binary file not shown.

build/cache/dwrite.json.gz

0 Bytes
Binary file not shown.

build/cache/dxc.json.gz

-926 Bytes
Binary file not shown.

build/cache/dxgi.json.gz

-403 Bytes
Binary file not shown.

build/cache/dxva.json.gz

0 Bytes
Binary file not shown.

build/cache/gl.json.gz

0 Bytes
Binary file not shown.

build/cache/glcore.json.gz

0 Bytes
Binary file not shown.

build/cache/gles2.json.gz

0 Bytes
Binary file not shown.

build/cache/openxr.json.gz

-16.2 KB
Binary file not shown.

build/cache/sdl.json.gz

0 Bytes
Binary file not shown.

build/cache/shaderc.json.gz

-194 Bytes
Binary file not shown.

build/cache/spirv-cross.json.gz

-54 Bytes
Binary file not shown.

build/cache/spirv-reflect.json.gz

0 Bytes
Binary file not shown.

build/cache/spirv.json.gz

0 Bytes
Binary file not shown.

build/cache/vulkan.json.gz

0 Bytes
Binary file not shown.

build/cache/webgpu.json.gz

-172 Bytes
Binary file not shown.

build/cache/wgl.json.gz

0 Bytes
Binary file not shown.

build/cache/wic.json.gz

0 Bytes
Binary file not shown.

build/cache/win32extras.json.gz

0 Bytes
Binary file not shown.

build/cache/xaudio.json.gz

-18 Bytes
Binary file not shown.

build/cache/xinput.json.gz

-55 Bytes
Binary file not shown.

build/submodules/ANGLE

Submodule ANGLE updated from 0d914d4 to ed97adb

build/submodules/GLFW

Submodule GLFW updated 75 files

build/submodules/MoltenVK

Submodule MoltenVK updated 68 files

build/submodules/SPIRV-Tools

Submodule SPIRV-Tools updated 189 files
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3
1+
1.2.2
Binary file not shown.
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.OpenCL.Extensions.KHR
11+
{
12+
[NativeName("Name", "cl_command_buffer_structure_type_khr")]
13+
public enum CommandBufferStructureType : int
14+
{
15+
[NativeName("Name", "CL_STRUCTURE_TYPE_MUTABLE_BASE_CONFIG_KHR")]
16+
BaseConfig = 0x0,
17+
[NativeName("Name", "CL_STRUCTURE_TYPE_MUTABLE_DISPATCH_CONFIG_KHR")]
18+
DispatchConfig = 0x1,
19+
}
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.OpenCL.Extensions.KHR
11+
{
12+
[NativeName("Name", "cl_ndrange_kernel_command_properties_khr")]
13+
public enum NdrangeKernelCommandProperties : ulong
14+
{
15+
[NativeName("Name", "CL_MUTABLE_DISPATCH_UPDATABLE_FIELDS_KHR")]
16+
UpdatableFields = 0x12B1,
17+
[NativeName("Name", "CL_MUTABLE_DISPATCH_ASSERTS_KHR")]
18+
Asserts = 0x12B8,
19+
}
20+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using System.Runtime.InteropServices;
7+
using System.Runtime.CompilerServices;
8+
using System.Text;
9+
using Silk.NET.Core;
10+
using Silk.NET.Core.Native;
11+
using Silk.NET.Core.Attributes;
12+
using Silk.NET.Core.Contexts;
13+
using Silk.NET.Core.Loader;
14+
15+
#pragma warning disable 1591
16+
17+
namespace Silk.NET.OpenCL.Extensions.KHR
18+
{
19+
[NativeName("Name", "cl_mutable_base_config_khr")]
20+
public unsafe partial struct MutableBaseConfigKhr
21+
{
22+
public MutableBaseConfigKhr
23+
(
24+
CommandBufferStructureType? type = null,
25+
void* next = null,
26+
uint? numMutableDispatch = null,
27+
MutableDispatchConfigKhr* mutableDispatchList = null
28+
) : this()
29+
{
30+
if (type is not null)
31+
{
32+
Type = type.Value;
33+
}
34+
35+
if (next is not null)
36+
{
37+
Next = next;
38+
}
39+
40+
if (numMutableDispatch is not null)
41+
{
42+
NumMutableDispatch = numMutableDispatch.Value;
43+
}
44+
45+
if (mutableDispatchList is not null)
46+
{
47+
MutableDispatchList = mutableDispatchList;
48+
}
49+
}
50+
51+
/// <summary></summary>
52+
[NativeName("Type", "cl_command_buffer_structure_type_khr")]
53+
[NativeName("Type.Name", "cl_command_buffer_structure_type_khr")]
54+
[NativeName("Name", "type")]
55+
public CommandBufferStructureType Type;
56+
/// <summary></summary>
57+
[NativeName("Type", "void*")]
58+
[NativeName("Type.Name", "void")]
59+
[NativeName("Name", "next")]
60+
public void* Next;
61+
/// <summary></summary>
62+
[NativeName("Type", "cl_uint")]
63+
[NativeName("Type.Name", "cl_uint")]
64+
[NativeName("Name", "num_mutable_dispatch")]
65+
public uint NumMutableDispatch;
66+
/// <summary></summary>
67+
[NativeName("Type", "cl_mutable_dispatch_config_khr*")]
68+
[NativeName("Type.Name", "cl_mutable_dispatch_config_khr")]
69+
[NativeName("Name", "mutable_dispatch_list")]
70+
public MutableDispatchConfigKhr* MutableDispatchList;
71+
}
72+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.OpenGL.Legacy
11+
{
12+
[NativeName("Name", "TextureParameter")]
13+
public enum TextureParameter : int
14+
{
15+
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")]
16+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
17+
TextureYDegammaQCom = 0x9710,
18+
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")]
19+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
20+
TextureCbcrDegammaQCom = 0x9711,
21+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
22+
YDegammaQCom = 0x9710,
23+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
24+
CbcrDegammaQCom = 0x9711,
25+
}
26+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.OpenGL
11+
{
12+
[NativeName("Name", "TextureParameter")]
13+
public enum TextureParameter : int
14+
{
15+
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")]
16+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
17+
TextureYDegammaQCom = 0x9710,
18+
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")]
19+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
20+
TextureCbcrDegammaQCom = 0x9711,
21+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
22+
YDegammaQCom = 0x9710,
23+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
24+
CbcrDegammaQCom = 0x9711,
25+
}
26+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.OpenGLES
11+
{
12+
[NativeName("Name", "TextureParameter")]
13+
public enum TextureParameter : int
14+
{
15+
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")]
16+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
17+
TextureYDegammaQCom = 0x9710,
18+
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")]
19+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
20+
TextureCbcrDegammaQCom = 0x9711,
21+
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")]
22+
YDegammaQCom = 0x9710,
23+
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")]
24+
CbcrDegammaQCom = 0x9711,
25+
}
26+
}

0 commit comments

Comments
 (0)