Skip to content

Commit

Permalink
Merge pull request #109 from exomia/release/v1.3.283
Browse files Browse the repository at this point in the history
Release/v1.3.283
  • Loading branch information
baetz-daniel authored May 6, 2024
2 parents 9ef19cb + 5fb7dd1 commit eceb5d1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.282
1.3.283
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net7.0;net6.0;</TargetFrameworks>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Exomia.Vulkan.Api.Core;
public static class VkExtLegacyDithering
{
/// <summary> The spec version. </summary>
public const uint VK_EXT_LEGACY_DITHERING_SPEC_VERSION = 1;
public const uint VK_EXT_LEGACY_DITHERING_SPEC_VERSION = 2;

/// <summary> The extension name. </summary>
public const string VK_EXT_LEGACY_DITHERING_EXTENSION_NAME = "VK_EXT_legacy_dithering";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public unsafe struct VkAccelerationStructureGeometryTrianglesDataKHR
/// <summary>vertexStride is the stride in bytes between each vertex.</summary>
public VkDeviceSize vertexStride;

/// <summary>maxVertex is the highest index of a vertex that will be addressed by a build command using this structure.</summary>
/// <summary>maxVertex is the number of vertices in vertexData minus one.</summary>
public uint maxVertex;

/// <summary>indexType is the VkIndexType of each index element.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public unsafe struct VkDeviceQueueGlobalPriorityCreateInfoKHR
/// <summary>pNext is NULL or a pointer to a structure extending this structure.</summary>
public void* pNext;

/// <summary>globalPriority is the system-wide priority associated to these queues as specified by VkQueueGlobalPriorityEXT</summary>
/// <summary>globalPriority is the system-wide priority associated to these queues as specified by VkQueueGlobalPriorityKHR</summary>
public VkQueueGlobalPriorityKHR globalPriority;
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public unsafe struct VkQueueFamilyGlobalPriorityPropertiesKHR
public uint priorityCount;

/// <summary>
/// priorities is an array of VK_MAX_GLOBAL_PRIORITY_SIZE_EXTVkQueueGlobalPriorityEXT enums representing all
/// priorities is an array of VK_MAX_GLOBAL_PRIORITY_SIZE_KHRVkQueueGlobalPriorityKHR enums representing all
/// supported global queue priorities in this queue family. The first priorityCount elements of the array will be
/// valid.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ public enum VkPipelineCreateFlagBits2KHR : ulong
/// </summary>
VK_PIPELINE_CREATE_2_DERIVATIVE_BIT_KHR = 0x4,

/// <summary>
/// VK_PIPELINE_CREATE_2_ENABLE_LEGACY_DITHERING_BIT_EXT specifies that the pipeline will be used in a render pass
/// that is begun with VK_RENDERING_ENABLE_LEGACY_DITHERING_BIT_EXT.
/// </summary>
VK_PIPELINE_CREATE_2_ENABLE_LEGACY_DITHERING_BIT_EXT = 0x400000000,

/// <summary>
/// VK_PIPELINE_CREATE_2_VIEW_INDEX_FROM_DEVICE_INDEX_BIT_KHRspecifies that any shader input variables decorated
/// as ViewIndexwill be assigned values as if they were decorated as DeviceIndex.
Expand Down

0 comments on commit eceb5d1

Please sign in to comment.