-
-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
539 additions
and
144 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.
Submodule MoltenVK
updated
71 files
Submodule SDL
updated
48 files
Submodule SPIRV-Cross
updated
53 files
Submodule SPIRV-Reflect
updated
23 files
Submodule SPIRV-Tools
updated
57 files
Submodule SwiftShader
updated
284 files
Submodule Vulkan-Headers
updated
14 files
+3 −3 | include/vulkan/vulkan.cppm | |
+50 −44 | include/vulkan/vulkan.hpp | |
+5 −3 | include/vulkan/vulkan_core.h | |
+176 −173 | include/vulkan/vulkan_enums.hpp | |
+9 −9 | include/vulkan/vulkan_format_traits.hpp | |
+943 −940 | include/vulkan/vulkan_funcs.hpp | |
+100 −0 | include/vulkan/vulkan_handles.hpp | |
+6 −6 | include/vulkan/vulkan_metal.h | |
+252 −250 | include/vulkan/vulkan_raii.hpp | |
+51 −48 | include/vulkan/vulkan_to_string.hpp | |
+2 −1 | registry/parse_dependency.py | |
+22 −0 | registry/spec_tools/conventions.py | |
+603 −88 | registry/validusage.json | |
+29 −15 | registry/vk.xml |
Submodule Vulkan-Loader
updated
46 files
Submodule dawn
updated
8950 files
Submodule wgpu-native
updated
48 files
94 changes: 0 additions & 94 deletions
94
src/Core/Silk.NET.Core.Win32Extras/Structs/MIDLMIDLItfDocumenttarget000000020001.gen.cs
This file was deleted.
Oops, something went wrong.
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
25 changes: 25 additions & 0 deletions
25
...enCL/Extensions/Silk.NET.OpenCL.Extensions.KHR/Enums/DeviceKernelClockCapabilities.gen.cs
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,25 @@ | ||
// 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 Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.OpenCL.Extensions.KHR | ||
{ | ||
[System.Flags] | ||
[NativeName("Name", "cl_device_kernel_clock_capabilities_khr")] | ||
public enum DeviceKernelClockCapabilities : ulong | ||
{ | ||
[NativeName("Name", "")] | ||
None = 0, | ||
[NativeName("Name", "CL_DEVICE_KERNEL_CLOCK_SCOPE_DEVICE_KHR")] | ||
Device = 0x1, | ||
[NativeName("Name", "CL_DEVICE_KERNEL_CLOCK_SCOPE_WORK_GROUP_KHR")] | ||
WorkGroup = 0x2, | ||
[NativeName("Name", "CL_DEVICE_KERNEL_CLOCK_SCOPE_SUB_GROUP_KHR")] | ||
SubGroup = 0x4, | ||
} | ||
} |
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
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
26 changes: 26 additions & 0 deletions
26
src/OpenGL/Silk.NET.OpenGL.Legacy/Enums/TextureParameter.gen.cs
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,26 @@ | ||
// 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 Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.OpenGL.Legacy | ||
{ | ||
[NativeName("Name", "TextureParameter")] | ||
public enum TextureParameter : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
TextureYDegammaQCom = 0x9710, | ||
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
TextureCbcrDegammaQCom = 0x9711, | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
YDegammaQCom = 0x9710, | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
CbcrDegammaQCom = 0x9711, | ||
} | ||
} |
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,26 @@ | ||
// 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 Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.OpenGL | ||
{ | ||
[NativeName("Name", "TextureParameter")] | ||
public enum TextureParameter : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
TextureYDegammaQCom = 0x9710, | ||
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
TextureCbcrDegammaQCom = 0x9711, | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
YDegammaQCom = 0x9710, | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
CbcrDegammaQCom = 0x9711, | ||
} | ||
} |
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
26 changes: 26 additions & 0 deletions
26
src/OpenGL/Silk.NET.OpenGLES/Enums/TextureParameter.gen.cs
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,26 @@ | ||
// 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 Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.OpenGLES | ||
{ | ||
[NativeName("Name", "TextureParameter")] | ||
public enum TextureParameter : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"YDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
TextureYDegammaQCom = 0x9710, | ||
[Obsolete("Deprecated in favour of \"CbcrDegammaQCom\"")] | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
TextureCbcrDegammaQCom = 0x9711, | ||
[NativeName("Name", "GL_TEXTURE_Y_DEGAMMA_QCOM")] | ||
YDegammaQCom = 0x9710, | ||
[NativeName("Name", "GL_TEXTURE_CBCR_DEGAMMA_QCOM")] | ||
CbcrDegammaQCom = 0x9711, | ||
} | ||
} |
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
Oops, something went wrong.