Skip to content

Commit

Permalink
v1.3.234
Browse files Browse the repository at this point in the history
  • Loading branch information
exomia-bot committed Nov 10, 2022
1 parent 3a5a996 commit 8f1732a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.233
1.3.234
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 @@ -323,8 +323,8 @@ public enum VkPipelineStageFlagBits2 : ulong
VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_COPY_BIT_KHR = 0x10000000,

/// <summary>
/// VK_PIPELINE_STAGE_2_MICROMAP_BUILD_BIT_EXT<br />
/// <a href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkPipelineStageFlagBits2">https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VkPipelineStageFlagBits2</a>
/// VK_PIPELINE_STAGE_2_MICROMAP_BUILD_BIT_EXT specifies the execution of
/// <a href="https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#micromap">micromap commands</a>.
/// </summary>
VK_PIPELINE_STAGE_2_MICROMAP_BUILD_BIT_EXT = 0x40000000,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public struct VkDecompressMemoryRegionNV
public VkDeviceSize decompressedSize;

/// <summary>
/// decompressionMethod is a single bit value from VkMemoryDecompressionMethodFlagBitsNV which specifies the
/// decompression method used to decompress data.
/// decompressionMethod is a bitmask of VkMemoryDecompressionMethodFlagBitsNV with a single bit set specifying the
/// method used to decompress data.
/// </summary>
public VkMemoryDecompressionMethodFlagsNV decompressionMethod;
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ namespace Exomia.Vulkan.Api.Core;
public enum VkMemoryDecompressionMethodFlagBitsNV : ulong
{
/// <summary>
/// VK_MEMORY_DECOMPRESSION_METHOD_GDEFLATE_1_0_BIT_NV specifies that GDEFLATE 1.0 algorithm is used to decompress
/// data.
/// VK_MEMORY_DECOMPRESSION_METHOD_GDEFLATE_1_0_BIT_NV specifies that the GDeflate 1.0 algorithm is used to
/// decompress data.
/// </summary>
VK_MEMORY_DECOMPRESSION_METHOD_GDEFLATE_1_0_BIT_NV = 0x1
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ public static unsafe class VkNvMemoryDecompression
/// <a href="https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdDecompressMemoryNV.html">https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdDecompressMemoryNV.html</a>
/// </summary>
/// <param name="commandBuffer">commandBuffer is the command buffer into which the command will be recorded.</param>
/// <param name="decompressRegionCount">decompressRegionCount is the number of decompressions to execute.</param>
/// <param name="decompressRegionCount">decompressRegionCount is the number of memory regions to decompress.</param>
/// <param name="pDecompressMemoryRegions">
/// pDecompressMemoryRegions is a pointer to an array of size decompressRegionCount
/// of VkDecompressMemoryRegionNVstructures used to specify the decompression parameters.
/// pDecompressMemoryRegions is a pointer to an array of decompressRegionCount
/// VkDecompressMemoryRegionNV structures specifying decompression parameters.
/// </param>
public static readonly delegate*<
VkCommandBuffer /*commandBuffer*/,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public unsafe struct VkPhysicalDeviceMemoryDecompressionPropertiesNV
public void* pNext;

/// <summary>
/// decompressionMethods specifies the list of all the memory decompression methods supported by the
/// implementation as a bitmask of VkMemoryDecompressionMethodFlagBitsNV.
/// decompressionMethods is a bitmask of VkMemoryDecompressionMethodFlagBitsNV specifying memory decompression
/// methods supported by the implementation.
/// </summary>
public VkMemoryDecompressionMethodFlagsNV decompressionMethods;

Expand Down

0 comments on commit 8f1732a

Please sign in to comment.