-
-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tomo sona moku la mi pali e moku Sutolokanopu tan lipu musi la sina s…
…ona e moku Sutolokanopu o tu e kili selo tan sewi ona o tu e kili loje tan poka ona o wan e ko pan e moku soweli mi ken kepeken ala soweli mani ni la o lon kili selo e soko a telo walo li open seli la o pini pali kepeken namako telo namako la moku pona li lon mije ale li sona ala e ona a mi sona (a mi sona) ni li pona (ni li pona) moku Sutolokanopu mu! tomo sona moku la mi pali e moku Sutolokanopu tan lipu musi la sina sona e moku Sutolokanpu mu!
- Loading branch information
Showing
44 changed files
with
3,678 additions
and
12 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Submodule Vulkan-Headers
updated
11 files
+12 −8 | include/vulkan/vulkan.hpp | |
+1 −1 | include/vulkan/vulkan_core.h | |
+879 −887 | include/vulkan/vulkan_enums.hpp | |
+327 −135 | include/vulkan/vulkan_extension_inspection.hpp | |
+7 −10 | include/vulkan/vulkan_funcs.hpp | |
+351 −51 | include/vulkan/vulkan_handles.hpp | |
+4 −3 | include/vulkan/vulkan_hpp_macros.hpp | |
+54 −55 | include/vulkan/vulkan_raii.hpp | |
+35 −35 | include/vulkan/vulkan_to_string.hpp | |
+139 −134 | registry/validusage.json | |
+173 −169 | registry/vk.xml |
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
46 changes: 46 additions & 0 deletions
46
src/Vulkan/Silk.NET.Vulkan/Video/Enums/StdVideoAV1ChromaSamplePosition.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,46 @@ | ||
// 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.Vulkan.Video | ||
{ | ||
[NativeName("Name", "StdVideoAV1ChromaSamplePosition")] | ||
public enum StdVideoAV1ChromaSamplePosition : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"Unknown\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_UNKNOWN")] | ||
StdVideoAV1ChromaSamplePositionUnknown = 0x0, | ||
[Obsolete("Deprecated in favour of \"Vertical\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_VERTICAL")] | ||
StdVideoAV1ChromaSamplePositionVertical = 0x1, | ||
[Obsolete("Deprecated in favour of \"Colocated\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_COLOCATED")] | ||
StdVideoAV1ChromaSamplePositionColocated = 0x2, | ||
[Obsolete("Deprecated in favour of \"Reserved\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_RESERVED")] | ||
StdVideoAV1ChromaSamplePositionReserved = 0x3, | ||
[Obsolete("Deprecated in favour of \"Invalid\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_INVALID")] | ||
StdVideoAV1ChromaSamplePositionInvalid = 0x7FFFFFFF, | ||
[Obsolete("Deprecated in favour of \"MaxEnum\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_MAX_ENUM")] | ||
StdVideoAV1ChromaSamplePositionMaxEnum = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_UNKNOWN")] | ||
Unknown = 0x0, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_VERTICAL")] | ||
Vertical = 0x1, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_COLOCATED")] | ||
Colocated = 0x2, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_RESERVED")] | ||
Reserved = 0x3, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_INVALID")] | ||
Invalid = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_CHROMA_SAMPLE_POSITION_MAX_ENUM")] | ||
MaxEnum = 0x7FFFFFFF, | ||
} | ||
} |
86 changes: 86 additions & 0 deletions
86
src/Vulkan/Silk.NET.Vulkan/Video/Enums/StdVideoAV1ColorPrimaries.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,86 @@ | ||
// 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.Vulkan.Video | ||
{ | ||
[NativeName("Name", "StdVideoAV1ColorPrimaries")] | ||
public enum StdVideoAV1ColorPrimaries : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"BT709\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_709")] | ||
StdVideoAV1ColorPrimariesBT709 = 0x1, | ||
[Obsolete("Deprecated in favour of \"BTUnspecified\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_UNSPECIFIED")] | ||
StdVideoAV1ColorPrimariesBTUnspecified = 0x2, | ||
[Obsolete("Deprecated in favour of \"BT470M\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_470_M")] | ||
StdVideoAV1ColorPrimariesBT470M = 0x4, | ||
[Obsolete("Deprecated in favour of \"BT470BG\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_470_B_G")] | ||
StdVideoAV1ColorPrimariesBT470BG = 0x5, | ||
[Obsolete("Deprecated in favour of \"BT601\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_601")] | ||
StdVideoAV1ColorPrimariesBT601 = 0x6, | ||
[Obsolete("Deprecated in favour of \"Smpte240\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_240")] | ||
StdVideoAV1ColorPrimariesSmpte240 = 0x7, | ||
[Obsolete("Deprecated in favour of \"GenericFilm\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_GENERIC_FILM")] | ||
StdVideoAV1ColorPrimariesGenericFilm = 0x8, | ||
[Obsolete("Deprecated in favour of \"BT2020\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_2020")] | ||
StdVideoAV1ColorPrimariesBT2020 = 0x9, | ||
[Obsolete("Deprecated in favour of \"Xyz\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_XYZ")] | ||
StdVideoAV1ColorPrimariesXyz = 0xA, | ||
[Obsolete("Deprecated in favour of \"Smpte431\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_431")] | ||
StdVideoAV1ColorPrimariesSmpte431 = 0xB, | ||
[Obsolete("Deprecated in favour of \"Smpte432\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_432")] | ||
StdVideoAV1ColorPrimariesSmpte432 = 0xC, | ||
[Obsolete("Deprecated in favour of \"Ebu3213\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_EBU_3213")] | ||
StdVideoAV1ColorPrimariesEbu3213 = 0x16, | ||
[Obsolete("Deprecated in favour of \"Invalid\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_INVALID")] | ||
StdVideoAV1ColorPrimariesInvalid = 0x7FFFFFFF, | ||
[Obsolete("Deprecated in favour of \"MaxEnum\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_MAX_ENUM")] | ||
StdVideoAV1ColorPrimariesMaxEnum = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_709")] | ||
BT709 = 0x1, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_UNSPECIFIED")] | ||
BTUnspecified = 0x2, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_470_M")] | ||
BT470M = 0x4, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_470_B_G")] | ||
BT470BG = 0x5, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_601")] | ||
BT601 = 0x6, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_240")] | ||
Smpte240 = 0x7, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_GENERIC_FILM")] | ||
GenericFilm = 0x8, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_BT_2020")] | ||
BT2020 = 0x9, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_XYZ")] | ||
Xyz = 0xA, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_431")] | ||
Smpte431 = 0xB, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_SMPTE_432")] | ||
Smpte432 = 0xC, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_EBU_3213")] | ||
Ebu3213 = 0x16, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_INVALID")] | ||
Invalid = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_COLOR_PRIMARIES_MAX_ENUM")] | ||
MaxEnum = 0x7FFFFFFF, | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
src/Vulkan/Silk.NET.Vulkan/Video/Enums/StdVideoAV1FrameRestorationType.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,46 @@ | ||
// 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.Vulkan.Video | ||
{ | ||
[NativeName("Name", "StdVideoAV1FrameRestorationType")] | ||
public enum StdVideoAV1FrameRestorationType : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"None\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_NONE")] | ||
StdVideoAV1FrameRestorationTypeNone = 0x0, | ||
[Obsolete("Deprecated in favour of \"Wiener\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_WIENER")] | ||
StdVideoAV1FrameRestorationTypeWiener = 0x1, | ||
[Obsolete("Deprecated in favour of \"Sgrproj\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_SGRPROJ")] | ||
StdVideoAV1FrameRestorationTypeSgrproj = 0x2, | ||
[Obsolete("Deprecated in favour of \"Switchable\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_SWITCHABLE")] | ||
StdVideoAV1FrameRestorationTypeSwitchable = 0x3, | ||
[Obsolete("Deprecated in favour of \"Invalid\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_INVALID")] | ||
StdVideoAV1FrameRestorationTypeInvalid = 0x7FFFFFFF, | ||
[Obsolete("Deprecated in favour of \"MaxEnum\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_MAX_ENUM")] | ||
StdVideoAV1FrameRestorationTypeMaxEnum = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_NONE")] | ||
None = 0x0, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_WIENER")] | ||
Wiener = 0x1, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_SGRPROJ")] | ||
Sgrproj = 0x2, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_SWITCHABLE")] | ||
Switchable = 0x3, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_INVALID")] | ||
Invalid = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_RESTORATION_TYPE_MAX_ENUM")] | ||
MaxEnum = 0x7FFFFFFF, | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
src/Vulkan/Silk.NET.Vulkan/Video/Enums/StdVideoAV1FrameType.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,46 @@ | ||
// 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.Vulkan.Video | ||
{ | ||
[NativeName("Name", "StdVideoAV1FrameType")] | ||
public enum StdVideoAV1FrameType : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"Key\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_KEY")] | ||
StdVideoAV1FrameTypeKey = 0x0, | ||
[Obsolete("Deprecated in favour of \"Inter\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INTER")] | ||
StdVideoAV1FrameTypeInter = 0x1, | ||
[Obsolete("Deprecated in favour of \"IntraOnly\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INTRA_ONLY")] | ||
StdVideoAV1FrameTypeIntraOnly = 0x2, | ||
[Obsolete("Deprecated in favour of \"Switch\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_SWITCH")] | ||
StdVideoAV1FrameTypeSwitch = 0x3, | ||
[Obsolete("Deprecated in favour of \"Invalid\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INVALID")] | ||
StdVideoAV1FrameTypeInvalid = 0x7FFFFFFF, | ||
[Obsolete("Deprecated in favour of \"MaxEnum\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_MAX_ENUM")] | ||
StdVideoAV1FrameTypeMaxEnum = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_KEY")] | ||
Key = 0x0, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INTER")] | ||
Inter = 0x1, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INTRA_ONLY")] | ||
IntraOnly = 0x2, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_SWITCH")] | ||
Switch = 0x3, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_INVALID")] | ||
Invalid = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_FRAME_TYPE_MAX_ENUM")] | ||
MaxEnum = 0x7FFFFFFF, | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
src/Vulkan/Silk.NET.Vulkan/Video/Enums/StdVideoAV1InterpolationFilter.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,52 @@ | ||
// 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.Vulkan.Video | ||
{ | ||
[Flags] | ||
[NativeName("Name", "StdVideoAV1InterpolationFilter")] | ||
public enum StdVideoAV1InterpolationFilter : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"Eighttap\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP")] | ||
StdVideoAV1InterpolationFilterEighttap = 0x0, | ||
[Obsolete("Deprecated in favour of \"EighttapSmooth\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH")] | ||
StdVideoAV1InterpolationFilterEighttapSmooth = 0x1, | ||
[Obsolete("Deprecated in favour of \"EighttapSharp\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP")] | ||
StdVideoAV1InterpolationFilterEighttapSharp = 0x2, | ||
[Obsolete("Deprecated in favour of \"Bilinear\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_BILINEAR")] | ||
StdVideoAV1InterpolationFilterBilinear = 0x3, | ||
[Obsolete("Deprecated in favour of \"Switchable\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_SWITCHABLE")] | ||
StdVideoAV1InterpolationFilterSwitchable = 0x4, | ||
[Obsolete("Deprecated in favour of \"Invalid\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_INVALID")] | ||
StdVideoAV1InterpolationFilterInvalid = 0x7FFFFFFF, | ||
[Obsolete("Deprecated in favour of \"MaxEnum\"")] | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_MAX_ENUM")] | ||
StdVideoAV1InterpolationFilterMaxEnum = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP")] | ||
Eighttap = 0x0, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH")] | ||
EighttapSmooth = 0x1, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP")] | ||
EighttapSharp = 0x2, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_BILINEAR")] | ||
Bilinear = 0x3, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_SWITCHABLE")] | ||
Switchable = 0x4, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_INVALID")] | ||
Invalid = 0x7FFFFFFF, | ||
[NativeName("Name", "STD_VIDEO_AV1_INTERPOLATION_FILTER_MAX_ENUM")] | ||
MaxEnum = 0x7FFFFFFF, | ||
} | ||
} |
Oops, something went wrong.