Skip to content

Commit

Permalink
v1.3.265
Browse files Browse the repository at this point in the history
  • Loading branch information
exomia-bot committed Sep 23, 2023
1 parent a363e0f commit 4bef1c0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.264
1.3.265
4 changes: 2 additions & 2 deletions src/Exomia.Vulkan.Api.Core/Enums/VkPipelineStageFlagBits2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public enum VkPipelineStageFlagBits2 : ulong
/// VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT<br />
/// VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV<br />
/// VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR<br />
/// VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_SUBPASS_SHADER_BIT_HUAWEI<br />
/// VK_PIPELINE_STAGE_2_INVOCATION_MASK_BIT_HUAWEI<br />
Expand Down Expand Up @@ -509,7 +509,7 @@ public enum VkPipelineStageFlagBits2 : ulong
/// VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT<br />
/// VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV<br />
/// VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR<br />
/// VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT<br />
/// VK_PIPELINE_STAGE_2_SUBPASS_SHADER_BIT_HUAWEI<br />
/// VK_PIPELINE_STAGE_2_INVOCATION_MASK_BIT_HUAWEI<br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public static unsafe class VkExtMultiDraw
/// pVertexInfo is a pointer to an array of VkMultiDrawInfoEXTwith vertex information to be
/// drawn.
/// </param>
/// <param name="instanceCount">instanceCount is the number of instances to draw.</param>
/// <param name="firstInstance">firstInstance is the instance ID of the first instance to draw.</param>
/// <param name="instanceCount">instanceCount is the number of instances per draw.</param>
/// <param name="firstInstance">firstInstance is the instance ID of the first instance in each draw.</param>
/// <param name="stride">stride is the byte stride between consecutive elements of pVertexInfo.</param>
public static readonly delegate*<
VkCommandBuffer /*commandBuffer*/,
Expand All @@ -78,8 +78,8 @@ public static readonly delegate*<
/// pIndexInfo is a pointer to an array of VkMultiDrawIndexedInfoEXT with index information to be
/// drawn.
/// </param>
/// <param name="instanceCount">instanceCount is the number of instances to draw.</param>
/// <param name="firstInstance">firstInstance is the instance ID of the first instance to draw.</param>
/// <param name="instanceCount">instanceCount is the number of instances per draw.</param>
/// <param name="firstInstance">firstInstance is the instance ID of the first instance in each draw.</param>
/// <param name="stride">stride is the byte stride between consecutive elements of pIndexInfo.</param>
/// <param name="pVertexOffset">
/// pVertexOffset is NULL or a pointer to the value added to the vertex index before indexing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ public unsafe struct VkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
public void* pNext;

/// <summary>
/// triStripVertexOrderIndependentOfProvokingVertex indicates that the implementation does not change its vertex
/// numbering for triangle strip primitives when the provoking vertex modeis VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT,
/// as shown in the last vertex table.
/// When the provoking vertex mode is VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT, and the primitive order is odd in
/// a triangle strip, the ordering of vertices is defined in last vertex table.
/// triStripVertexOrderIndependentOfProvokingVertex equal to VK_TRUE indicates that the implementation ignores this and
/// uses the vertex order defined by VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXT instead.
/// </summary>
public VkBool32 triStripVertexOrderIndependentOfProvokingVertex;
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public enum VkIndirectStateFlagBitsNV
/// <summary>
/// VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV allows to toggle the
/// <a href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFrontFace.html">VkFrontFace</a>
/// rasterization state for subsequent draw operations.
/// rasterization state for subsequent drawing commands.
/// </summary>
VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV = 0x1
}

0 comments on commit 4bef1c0

Please sign in to comment.