-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
385d873
commit be0c0a8
Showing
16 changed files
with
382 additions
and
20 deletions.
There are no files selected for viewing
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.3.235 | ||
1.3.236 |
1 change: 1 addition & 0 deletions
1
...Extensions/LUNARG/VK_LUNARG_direct_driver_loading/VkLunargDirectDriverLoading.bitmasks.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 @@ | ||
global using VkDirectDriverLoadingFlagsLUNARG = Exomia.Vulkan.Api.Core.FutureUse32; |
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
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
65 changes: 65 additions & 0 deletions
65
...Core/Extensions/LUNARG/VK_LUNARG_direct_driver_loading/VkDirectDriverLoadingInfoLUNARG.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,65 @@ | ||
#region License | ||
|
||
// Copyright (c) 2018-2022, exomia | ||
// All rights reserved. | ||
// | ||
// This source code is licensed under the BSD-style license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
|
||
#endregion | ||
|
||
// ReSharper disable UnusedMember.Global | ||
// ReSharper disable InconsistentNaming | ||
// ReSharper disable once CheckNamespace | ||
namespace Exomia.Vulkan.Api.Core; | ||
|
||
/// <summary> | ||
/// VkDirectDriverLoadingInfoLUNARG - Structure specifying the information required to load an additional driver | ||
/// - | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingInfoLUNARG.html"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingInfoLUNARG.html | ||
/// </a> | ||
/// </summary> | ||
[StructLayout(LayoutKind.Sequential)] | ||
public unsafe struct VkDirectDriverLoadingInfoLUNARG | ||
{ | ||
/// <summary> The stype of this structure. </summary> | ||
public const VkStructureType STYPE = VK_STRUCTURE_TYPE_DIRECT_DRIVER_LOADING_INFO_LUNARG; | ||
|
||
/// <summary> | ||
/// sType<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG | ||
/// </a> | ||
/// </summary> | ||
public VkStructureType sType; | ||
|
||
/// <summary> | ||
/// pNext<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG | ||
/// </a> | ||
/// </summary> | ||
public void* pNext; | ||
|
||
/// <summary> | ||
/// flags<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG | ||
/// </a> | ||
/// </summary> | ||
public VkDirectDriverLoadingFlagsLUNARG flags; | ||
|
||
/// <summary> | ||
/// pfnGetInstanceProcAddr<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingInfoLUNARG | ||
/// </a> | ||
/// </summary> | ||
public delegate*<VkInstance /*instance*/, byte* /*pName*/, delegate*<void>> pfnGetInstanceProcAddr; | ||
} |
81 changes: 81 additions & 0 deletions
81
...Core/Extensions/LUNARG/VK_LUNARG_direct_driver_loading/VkDirectDriverLoadingListLUNARG.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,81 @@ | ||
#region License | ||
|
||
// Copyright (c) 2018-2022, exomia | ||
// All rights reserved. | ||
// | ||
// This source code is licensed under the BSD-style license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
|
||
#endregion | ||
|
||
// ReSharper disable UnusedMember.Global | ||
// ReSharper disable InconsistentNaming | ||
// ReSharper disable once CheckNamespace | ||
namespace Exomia.Vulkan.Api.Core; | ||
|
||
/// <summary> | ||
/// VkDirectDriverLoadingListLUNARG - Structure specifying additional drivers to load - | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingListLUNARG.html"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingListLUNARG.html | ||
/// </a> | ||
/// </summary> | ||
/// <remarks> | ||
/// <list type="table"> | ||
/// <item> | ||
/// <term>structextends</term><description>VkInstanceCreateInfo</description> | ||
/// </item> | ||
/// </list> | ||
/// </remarks> | ||
[VkStructExtends("VkInstanceCreateInfo")] | ||
[StructLayout(LayoutKind.Sequential)] | ||
public unsafe struct VkDirectDriverLoadingListLUNARG | ||
{ | ||
/// <summary> The stype of this structure. </summary> | ||
public const VkStructureType STYPE = VK_STRUCTURE_TYPE_DIRECT_DRIVER_LOADING_LIST_LUNARG; | ||
|
||
/// <summary> | ||
/// sType<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG | ||
/// </a> | ||
/// </summary> | ||
public VkStructureType sType; | ||
|
||
/// <summary> | ||
/// pNext<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG | ||
/// </a> | ||
/// </summary> | ||
public void* pNext; | ||
|
||
/// <summary> | ||
/// mode<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG | ||
/// </a> | ||
/// </summary> | ||
public VkDirectDriverLoadingModeLUNARG mode; | ||
|
||
/// <summary> | ||
/// driverCount<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG | ||
/// </a> | ||
/// </summary> | ||
public uint driverCount; | ||
|
||
/// <summary> | ||
/// pDrivers<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingListLUNARG | ||
/// </a> | ||
/// </summary> | ||
public VkDirectDriverLoadingInfoLUNARG* pDrivers; | ||
} |
42 changes: 42 additions & 0 deletions
42
...Core/Extensions/LUNARG/VK_LUNARG_direct_driver_loading/VkDirectDriverLoadingModeLUNARG.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,42 @@ | ||
#region License | ||
|
||
// Copyright (c) 2018-2022, exomia | ||
// All rights reserved. | ||
// | ||
// This source code is licensed under the BSD-style license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
|
||
#endregion | ||
|
||
// ReSharper disable UnusedMember.Global | ||
// ReSharper disable InconsistentNaming | ||
// ReSharper disable once CheckNamespace | ||
namespace Exomia.Vulkan.Api.Core; | ||
|
||
/// <summary> | ||
/// VkDirectDriverLoadingModeLUNARG - Specify loader behavior of added drivers - | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingModeLUNARG.html"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDirectDriverLoadingModeLUNARG.html | ||
/// </a> | ||
/// </summary> | ||
public enum VkDirectDriverLoadingModeLUNARG | ||
{ | ||
/// <summary> | ||
/// VK_DIRECT_DRIVER_LOADING_MODE_EXCLUSIVE_LUNARG<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingModeLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingModeLUNARG | ||
/// </a> | ||
/// </summary> | ||
VK_DIRECT_DRIVER_LOADING_MODE_EXCLUSIVE_LUNARG = 0, | ||
|
||
/// <summary> | ||
/// VK_DIRECT_DRIVER_LOADING_MODE_INCLUSIVE_LUNARG<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingModeLUNARG"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkDirectDriverLoadingModeLUNARG | ||
/// </a> | ||
/// </summary> | ||
VK_DIRECT_DRIVER_LOADING_MODE_INCLUSIVE_LUNARG = 1 | ||
} |
51 changes: 51 additions & 0 deletions
51
...Api.Core/Extensions/LUNARG/VK_LUNARG_direct_driver_loading/VkLunargDirectDriverLoading.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,51 @@ | ||
#region License | ||
|
||
// Copyright (c) 2018-2022, exomia | ||
// All rights reserved. | ||
// | ||
// This source code is licensed under the BSD-style license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
|
||
#endregion | ||
|
||
global using static Exomia.Vulkan.Api.Core.VkLunargDirectDriverLoading; | ||
|
||
#pragma warning disable CA2211 // Non-constant fields should not be visible | ||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member | ||
|
||
// ReSharper disable UnusedMember.Global | ||
// ReSharper disable InconsistentNaming | ||
// ReSharper disable once CheckNamespace | ||
namespace Exomia.Vulkan.Api.Core; | ||
|
||
/// <summary> | ||
/// VK_LUNARG_direct_driver_loading - instance extension (nr. 460) - author 'LUNARG' [platform '' | contact 'Charles | ||
/// Giessen @charles-lunarg']<br /> | ||
/// <a | ||
/// href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_LUNARG_direct_driver_loading.html"> | ||
/// https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_LUNARG_direct_driver_loading.html | ||
/// </a> | ||
/// </summary> | ||
public static class VkLunargDirectDriverLoading | ||
{ | ||
/// <summary> The spec version. </summary> | ||
public const uint VK_LUNARG_DIRECT_DRIVER_LOADING_SPEC_VERSION = 1; | ||
|
||
/// <summary> The extension name. </summary> | ||
public const string VK_LUNARG_DIRECT_DRIVER_LOADING_EXTENSION_NAME = "VK_LUNARG_direct_driver_loading"; | ||
|
||
/// <summary> | ||
/// An UTF8 null terminated version of <see cref="VK_LUNARG_DIRECT_DRIVER_LOADING_EXTENSION_NAME" /> represented | ||
/// by an UTF16 string. | ||
/// </summary> | ||
/// <remarks> | ||
/// Example usage:<br /> | ||
/// <br /> | ||
/// fixed(char* ptr = VK_LUNARG_DIRECT_DRIVER_LOADING_EXTENSION_NAME_UTF8_NT) {<br /> | ||
/// sbyte* utf8NtPtr = (sbyte*)ptr; // utf8NtPtr - can now be passed and used directly as a utf8_nt string for | ||
/// unmanaged code.<br /> | ||
/// } | ||
/// </remarks> | ||
public const string VK_LUNARG_DIRECT_DRIVER_LOADING_EXTENSION_NAME_UTF8_NT = | ||
"\u4b56\u4c5f\u4e55\u5241\u5f47\u4944\u4552\u5443\u445f\u4952\u4556\u5f52\u4f4c\u4441\u4e49\u5f47\u5845\u4554\u534e\u4f49\u5f4e\u414e\u454d\u0000"; | ||
} |
Oops, something went wrong.