Skip to content

Commit

Permalink
Merge pull request #54 from tannergooding/main
Browse files Browse the repository at this point in the history
Regenerating bindings for Vulkan v1.3.224.1
  • Loading branch information
tannergooding authored Sep 3, 2022
2 parents 9fef06a + c575bb7 commit 5652cd0
Show file tree
Hide file tree
Showing 2,381 changed files with 49,565 additions and 51,420 deletions.
17 changes: 9 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
tab_width = 4
trim_trailing_whitespace = true

###############################################################################
Expand All @@ -45,13 +46,6 @@ indent_style = tab
[*.cs]
file_header_template = Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

###############################################################################
# Set dotnet diagnostic rules to:
# disable any parent diagnostic rules since they are not applicable to interop
###############################################################################
dotnet_diagnostic.CA1069.severity = none
dotnet_diagnostic.CA1401.severity = none

###############################################################################
# Set dotnet naming rules to:
# require async methods be pascal case suffixed with Async
Expand Down Expand Up @@ -183,6 +177,7 @@ dotnet_sort_system_directives_first = true
# require null-coalescing expressions,
# require collection-initializers,
# require explicit tuple names,
# suggest namespace match folder names,
# require null-propogation
# require object-initializers,
#
Expand Down Expand Up @@ -217,6 +212,7 @@ dotnet_sort_system_directives_first = true
dotnet_style_coalesce_expression = true:error
dotnet_style_collection_initializer = true:error
dotnet_style_explicit_tuple_names = true:error
dotnet_style_namespace_match_folder = true:suggestion
dotnet_style_null_propagation = true:error
dotnet_style_object_initializer = true:error

Expand Down Expand Up @@ -383,6 +379,8 @@ csharp_space_between_square_brackets = false
#
# require inlined variable declarations,
#
# require file scoped namespace declarations,
#
# require local over anonymous functions,
# require pattern-matching over "as" with "null" check,
# require pattern-matching over "is" with "cast" check,
Expand Down Expand Up @@ -419,14 +417,17 @@ csharp_style_implicit_object_creation_when_type_is_apparent = false:error

csharp_style_inlined_variable_declaration = true:error

csharp_style_namespace_declarations = file_scoped:error

csharp_style_pattern_local_over_anonymous_function = true:error
csharp_style_pattern_matching_over_as_with_null_check = true:error
csharp_style_pattern_matching_over_is_with_cast_check = true:error

csharp_style_prefer_index_operator = false:error
csharp_style_prefer_range_operator = false:error
csharp_style_prefer_method_group_conversion = true:suggestion
csharp_style_prefer_not_pattern = true:error
csharp_style_prefer_pattern_matching = true:error
csharp_style_prefer_range_operator = false:error
csharp_style_prefer_switch_expression = true:error

csharp_style_throw_expression = true:error
Expand Down
12 changes: 7 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<!-- Default settings that explicitly differ from the Sdk.props defaults -->
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AnalysisLevel>preview</AnalysisLevel>
<BaseIntermediateOutputPath>$(BaseArtifactsPath)obj/$(BaseArtifactsPathSuffix)/</BaseIntermediateOutputPath>
<DebugType>embedded</DebugType>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
Expand All @@ -44,7 +45,7 @@
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath>
<Product>TerraFX.Interop.Vulkan</Product>
<RootNamespace>TerraFX.Interop</RootNamespace>
<VersionPrefix>1.3.204.0</VersionPrefix>
<VersionPrefix>1.3.224.0</VersionPrefix>
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">rc3</VersionSuffix>
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
</PropertyGroup>
Expand All @@ -67,11 +68,12 @@
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<PublicSign>true</PublicSign>
<RepositoryType>git</RepositoryType>
<RestoreSources>
https://api.nuget.org/v3/index.json;
https://pkgs.terrafx.dev/index.json;
</RestoreSources>
<RestoreConfigFile>$(MSBuildThisFileDirectory)NuGet.config</RestoreConfigFile>
<UseSharedCompilation>true</UseSharedCompilation>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Net.Compilers.Toolset" PrivateAssets="all" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<!-- Settings that append the existing setting value -->
<PropertyGroup>
<NoWarn>$(NoWarn);NU5105</NoWarn>
<NoWarn>$(NoWarn)</NoWarn>
</PropertyGroup>

<!-- Settings that are only set for CI builds -->
Expand Down
3 changes: 2 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<!-- Package versions for package references across all projects -->
<ItemGroup>
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageVersion Include="Microsoft.Net.Compilers.Toolset" Version="4.4.0-2.22423.18" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="NUnit" Version="3.13.3" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.2.1" />
Expand Down
20 changes: 20 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSourceMapping>
<packageSource key="nuget">
<package pattern="*" />
</packageSource>
<packageSource key="terrafx">
<package pattern="TerraFX.*" />
</packageSource>
<packageSource key="dotnet-tools">
<package pattern="Microsoft.Net.Compilers.Toolset" />
</packageSource>
</packageSourceMapping>
<packageSources>
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="terrafx" value="https://pkgs.terrafx.dev/index.json" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
</packageSources>
</configuration>
20 changes: 18 additions & 2 deletions TerraFX.Interop.Vulkan.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".root", ".root", "{2F337CB6
Directory.Build.targets = Directory.Build.targets
Directory.Packages.props = Directory.Packages.props
LICENSE.md = LICENSE.md
NuGet.config = NuGet.config
pack.cmd = pack.cmd
pack.sh = pack.sh
restore.cmd = restore.cmd
Expand All @@ -24,8 +25,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".root", ".root", "{2F337CB6
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{8793898A-6542-4606-AA82-AB14151D2D20}"
ProjectSection(SolutionItems) = preProject
docs\CODE_OF_CONDUCT.md = docs\CODE_OF_CONDUCT.md
docs\CODEOWNERS = docs\CODEOWNERS
docs\CODE_OF_CONDUCT.md = docs\CODE_OF_CONDUCT.md
docs\CONTRIBUTING.md = docs\CONTRIBUTING.md
docs\ISSUE_TEMPLATE.md = docs\ISSUE_TEMPLATE.md
docs\PULL_REQUEST_TEMPLATE.md = docs\PULL_REQUEST_TEMPLATE.md
Expand Down Expand Up @@ -75,7 +76,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "generation", "generation",
generation\remap-classes.rsp = generation\remap-classes.rsp
generation\remap-handles.rsp = generation\remap-handles.rsp
generation\remap-imports.rsp = generation\remap-imports.rsp
generation\remap-other.rsp = generation\remap-other.rsp
generation\remap-structs.rsp = generation\remap-structs.rsp
generation\remap-transparent.rsp = generation\remap-transparent.rsp
generation\remap-types.rsp = generation\remap-types.rsp
Expand Down Expand Up @@ -308,6 +308,20 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "vulkan_video_codec_h265std_
generation\Vulkan\vk_video\vulkan_video_codec_h265std_encode\vk_video-vulkan_video_codec_h265std_encode.h = generation\Vulkan\vk_video\vulkan_video_codec_h265std_encode\vk_video-vulkan_video_codec_h265std_encode.h
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{634B8A0D-A2BD-4AC3-B56B-B6578E238AA1}"
ProjectSection(SolutionItems) = preProject
.github\ISSUE_TEMPLATE\bug.md = .github\ISSUE_TEMPLATE\bug.md
.github\ISSUE_TEMPLATE\proposal.md = .github\ISSUE_TEMPLATE\proposal.md
.github\ISSUE_TEMPLATE\regression.md = .github\ISSUE_TEMPLATE\regression.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "vulkan_profiles", "vulkan_profiles", "{191B9CB7-6528-4550-89C7-4F2F52A0FCFD}"
ProjectSection(SolutionItems) = preProject
generation\Vulkan\vulkan\vulkan_profiles\generate.rsp = generation\Vulkan\vulkan\vulkan_profiles\generate.rsp
generation\Vulkan\vulkan\vulkan_profiles\header.txt = generation\Vulkan\vulkan\vulkan_profiles\header.txt
generation\Vulkan\vulkan\vulkan_profiles\vulkan-vulkan_profiles.h = generation\Vulkan\vulkan\vulkan_profiles\vulkan-vulkan_profiles.h
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -368,6 +382,8 @@ Global
{359B88FB-0ED5-4135-822B-82350347138C} = {F95949B0-75CD-4B37-BD45-C91EB90EE8D2}
{09775914-ED8B-4F3D-BB35-8D9F30464A8A} = {359B88FB-0ED5-4135-822B-82350347138C}
{130AD321-77EC-4B5D-BCDD-708380AB6150} = {70F5B453-DC97-44B5-B557-22FA8093F38D}
{634B8A0D-A2BD-4AC3-B56B-B6578E238AA1} = {8B98276D-AB81-4492-81E3-BAB8F9494A99}
{191B9CB7-6528-4550-89C7-4F2F52A0FCFD} = {A60F8633-35FC-4F61-A42A-420ED1BEB2DB}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2FE36DF8-2D9C-4F20-8787-45DC74B57461}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h264std
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h264std.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h264std.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h264std.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h264std.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h264std_decode
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h264std_decode.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h264std_decode.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h264std_decode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h264std_decode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <vulkan/vulkan.h>
#include <vk_video/vulkan_video_codecs_common.h>
#include <vk_video/vulkan_video_codec_h264std.h>
#include <vk_video/vulkan_video_codec_h264std_decode.h>
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h264std_encode
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h264std_encode.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h264std_encode.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h264std_encode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h264std_encode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <vulkan/vulkan.h>
#include <vk_video/vulkan_video_codecs_common.h>
#include <vk_video/vulkan_video_codec_h264std.h>
#include <vk_video/vulkan_video_codec_h264std_encode.h>
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h265std
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h265std.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h265std.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h265std.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h265std.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h265std_decode
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h265std_decode.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h265std_decode.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h265std_decode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h265std_decode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <vulkan/vulkan.h>
#include <vk_video/vulkan_video_codecs_common.h>
#include <vk_video/vulkan_video_codec_h265std.h>
#include <vk_video/vulkan_video_codec_h265std_decode.h>
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codec_h265std_encode
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codec_h265std_encode.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codec_h265std_encode.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codec_h265std_encode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codec_h265std_encode.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <vulkan/vulkan.h>
#include <vk_video/vulkan_video_codecs_common.h>
#include <vk_video/vulkan_video_codec_h265std.h>
#include <vk_video/vulkan_video_codec_h265std_encode.h>
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vk_video/vulkan_video_codecs_common
--traverse
C:/VulkanSDK/1.3.204.0/Include/vk_video/vulkan_video_codecs_common.h
C:/VulkanSDK/1.3.224.1/Include/vk_video/vulkan_video_codecs_common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.

// Ported from include/vk_video/vulkan_video_codecs_common.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vk_video/vulkan_video_codecs_common.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vk_enum_string_helper
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vulkan-vk_enum_string_helper.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vulkan-vk_enum_string_helper.h
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_enum_string_helper/header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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/vk_enum_string_helper.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vulkan/vk_enum_string_helper.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2022 The Khronos Group Inc. Copyright © 2015-2022 Valve Corporation. Copyright © 2015-2022 LunarG, Inc. Copyright © 2015-2022 Google Inc. Licensed under the Apache License v2.0 (Apache-2.0)
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_icd/generate.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vk_icd
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vk_icd.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vk_icd.h
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_icd/header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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/vk_icd.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vulkan/vk_icd.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2016 The Khronos Group Inc. Copyright © 2015-2016 Valve Corporation. Copyright © 2015-2016 LunarG, Inc. Licensed under the Apache License v2.0 (Apache-2.0)
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_layer/generate.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vk_layer
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vk_layer.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vk_layer.h
--with-attribute
VkLoaderFeastureFlagBits=Flags
--with-type
Expand Down
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_layer/header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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/vk_layer.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vulkan/vk_layer.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2017 The Khronos Group Inc. Copyright © 2015-2017 Valve Corporation. Copyright © 2015-2017 LunarG, Inc. Licensed under the Apache License v2.0 (Apache-2.0)
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_platform/generate.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vk_platform
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vk_platform.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vk_platform.h
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_platform/header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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/vk_platform.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vulkan/vk_platform.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2014-2022 The Khronos Group Inc. Licensed under the Apache License v2.0 (Apache-2.0)
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_sdk_platform/generate.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vk_sdk_platform
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vk_sdk_platform.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vk_sdk_platform.h
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vk_sdk_platform/header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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/vk_sdk_platform.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.204
// Ported from include/vulkan/vk_sdk_platform.h in the KhronosGroup/Vulkan-Headers repository for tag v1.3.224
// Original source is Copyright © 2015-2016 The Khronos Group Inc. Copyright © 2015-2016 Valve Corporation. Copyright © 2015-2016 LunarG, Inc. Licensed under the Apache License v2.0 (Apache-2.0)
2 changes: 1 addition & 1 deletion generation/Vulkan/vulkan/vulkan/generate.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ TerraFX.Interop.Vulkan
--test-output
../../../../tests/Interop/Vulkan/Vulkan/vulkan/vulkan
--traverse
C:/VulkanSDK/1.3.204.0/Include/vulkan/vulkan.h
C:/VulkanSDK/1.3.224.1/Include/vulkan/vulkan.h
Loading

0 comments on commit 5652cd0

Please sign in to comment.