Skip to content

Commit 1350a08

Browse files
committed
Update vulkan-headers because apparently they are out-of-date enough that I'm getting confused
1 parent 8ab8550 commit 1350a08

File tree

153 files changed

+9519
-2938
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+9519
-2938
lines changed

.silktouch/ac001027d53000e0.stout

96.1 KB
Binary file not shown.

eng/submodules/vulkan-headers

Submodule vulkan-headers updated 47 files

sources/Vulkan/Vulkan/Enums/AccessFlags2.gen.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,6 @@ public enum AccessFlags2 : ulong
8484
MicromapWriteBitEXT = unchecked((ulong)0x200000000000UL),
8585
OpticalFlowReadBitNV = unchecked((ulong)0x40000000000UL),
8686
OpticalFlowWriteBitNV = unchecked((ulong)0x80000000000UL),
87+
DataGraphReadBitARM = unchecked((ulong)0x800000000000UL),
88+
DataGraphWriteBitARM = unchecked((ulong)0x1000000000000UL),
8789
}

sources/Vulkan/Vulkan/Enums/BufferUsageFlags2.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public enum BufferUsageFlags2 : ulong
5050
PushDescriptorsDescriptorBufferBitEXT = unchecked((ulong)0x04000000UL),
5151
MicromapBuildInputReadOnlyBitEXT = unchecked((ulong)0x00800000UL),
5252
MicromapStorageBitEXT = unchecked((ulong)0x01000000UL),
53+
DataGraphForeignDescriptorBitARM = unchecked((ulong)0x20000000UL),
5354
TileMemoryBitQCOM = unchecked((ulong)0x08000000UL),
5455
PreprocessBufferBitEXT = unchecked((ulong)0x80000000UL),
5556
}

sources/Vulkan/Vulkan/Enums/FormatFeatureFlags2.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,12 @@ public enum FormatFeatureFlags2 : ulong
8585
WeightSampledImageBitQCOM = unchecked((ulong)0x800000000UL),
8686
BlockMatchingBitQCOM = unchecked((ulong)0x1000000000UL),
8787
BoxFilterSampledBitQCOM = unchecked((ulong)0x2000000000UL),
88+
TensorShaderBitARM = unchecked((ulong)0x8000000000UL),
89+
TensorImageAliasingBitARM = unchecked((ulong)0x80000000000UL),
8890
OpticalFlowImageBitNV = unchecked((ulong)0x10000000000UL),
8991
OpticalFlowVectorBitNV = unchecked((ulong)0x20000000000UL),
9092
OpticalFlowCostBitNV = unchecked((ulong)0x40000000000UL),
93+
TensorDataGraphBitARM = unchecked((ulong)0x1000000000000UL),
9194
VideoEncodeQuantizationDeltaMapBitKHR = unchecked((ulong)0x2000000000000UL),
9295
VideoEncodeEmphasisMapBitKHR = unchecked((ulong)0x4000000000000UL),
9396
}

sources/Vulkan/Vulkan/Enums/PipelineCreateFlags2.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ public enum PipelineCreateFlags2 : ulong
6060
DisallowOpacityMicromapBitARM = unchecked((ulong)0x2000000000UL),
6161
CaptureDataBitKHR = unchecked((ulong)0x80000000UL),
6262
IndirectBindableBitEXT = unchecked((ulong)0x4000000000UL),
63+
PerLayerFragmentDensityBitValve = unchecked((ulong)0x10000000000UL),
6364
}

sources/Vulkan/Vulkan/Enums/PipelineStageFlags2.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,5 @@ public enum PipelineStageFlags2 : ulong
9090
ClusterCullingShaderBitHuawei = unchecked((ulong)0x20000000000UL),
9191
OpticalFlowBitNV = unchecked((ulong)0x20000000UL),
9292
ConvertCooperativeVectorMatrixBitNV = unchecked((ulong)0x100000000000UL),
93+
DataGraphBitARM = unchecked((ulong)0x40000000000UL),
9394
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// Ported from the Vulkan headers and corresponding dependencies.
4+
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
6+
using System.Reflection;
7+
using System.Runtime.CompilerServices;
8+
using System.Runtime.InteropServices;
9+
10+
namespace Silk.NET.Vulkan;
11+
12+
[Transformed]
13+
[Flags]
14+
public enum PresentGravityFlagsEXT : uint
15+
{
16+
None = 0,
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// Ported from the Vulkan headers and corresponding dependencies.
4+
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
6+
using System.Reflection;
7+
using System.Runtime.CompilerServices;
8+
using System.Runtime.InteropServices;
9+
10+
namespace Silk.NET.Vulkan;
11+
12+
[Transformed]
13+
[Flags]
14+
public enum PresentScalingFlagsEXT : uint
15+
{
16+
None = 0,
17+
}

sources/Vulkan/Vulkan/Handles/CudaFunctionNVHandle.gen.cs

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)