-
Notifications
You must be signed in to change notification settings - Fork 4
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
05a3290
commit 6efec6a
Showing
44 changed files
with
667 additions
and
71 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
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
16 changes: 0 additions & 16 deletions
16
sources/Interop/Vulkan/vulkan/vulkan_beta/VkVideoDecodeH264FieldLayoutFlagsEXT.cs
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
sources/Interop/Vulkan/vulkan/vulkan_beta/VkVideoDecodeH264PictureLayoutFlagsEXT.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,15 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_beta.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public enum VkVideoDecodeH264PictureLayoutFlagsEXT | ||
{ | ||
VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_PROGRESSIVE_EXT = 0, | ||
VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_INTERLEAVED_LINES_BIT_EXT = 0x00000001, | ||
VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_INTERLACED_SEPARATE_PLANES_BIT_EXT = 0x00000002, | ||
VK_VIDEO_DECODE_H264_PICTURE_LAYOUT_FLAG_BITS_MAX_ENUM_EXT = 0x7FFFFFFF, | ||
} | ||
} |
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
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
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
21 changes: 21 additions & 0 deletions
21
sources/Interop/Vulkan/vulkan/vulkan_core/VkMemoryGetRemoteAddressInfoNV.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,21 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_core.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public unsafe partial struct VkMemoryGetRemoteAddressInfoNV | ||
{ | ||
public VkStructureType sType; | ||
|
||
[NativeTypeName("const void *")] | ||
public void* pNext; | ||
|
||
[NativeTypeName("VkDeviceMemory")] | ||
public ulong memory; | ||
|
||
[NativeTypeName("VkExternalMemoryHandleTypeFlagBits")] | ||
public VkExternalMemoryHandleTypeFlags handleType; | ||
} | ||
} |
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
17 changes: 17 additions & 0 deletions
17
sources/Interop/Vulkan/vulkan/vulkan_core/VkPhysicalDeviceExternalMemoryRDMAFeaturesNV.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,17 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_core.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public unsafe partial struct VkPhysicalDeviceExternalMemoryRDMAFeaturesNV | ||
{ | ||
public VkStructureType sType; | ||
|
||
public void* pNext; | ||
|
||
[NativeTypeName("VkBool32")] | ||
public uint externalMemoryRDMA; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
sources/Interop/Vulkan/vulkan/vulkan_core/VkPhysicalDeviceInvocationMaskFeaturesHUAWEI.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,17 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_core.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public unsafe partial struct VkPhysicalDeviceInvocationMaskFeaturesHUAWEI | ||
{ | ||
public VkStructureType sType; | ||
|
||
public void* pNext; | ||
|
||
[NativeTypeName("VkBool32")] | ||
public uint invocationMask; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
sources/Interop/Vulkan/vulkan/vulkan_core/VkPhysicalDevicePresentIdFeaturesKHR.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,17 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_core.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public unsafe partial struct VkPhysicalDevicePresentIdFeaturesKHR | ||
{ | ||
public VkStructureType sType; | ||
|
||
public void* pNext; | ||
|
||
[NativeTypeName("VkBool32")] | ||
public uint presentId; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
sources/Interop/Vulkan/vulkan/vulkan_core/VkPhysicalDevicePresentWaitFeaturesKHR.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,17 @@ | ||
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. | ||
|
||
// Ported from include/vulkan/vulkan_core.h in the KhronosGroup/Vulkan-Headers repository for tag v1.2.189 | ||
// Original source is Copyright © 2015-2021 The Khronos Group Inc. | ||
|
||
namespace TerraFX.Interop | ||
{ | ||
public unsafe partial struct VkPhysicalDevicePresentWaitFeaturesKHR | ||
{ | ||
public VkStructureType sType; | ||
|
||
public void* pNext; | ||
|
||
[NativeTypeName("VkBool32")] | ||
public uint presentWait; | ||
} | ||
} |
Oops, something went wrong.