More comments and formatting fixes

This commit is contained in:
sunshineinabox 2024-05-18 15:22:23 -07:00
parent eeecd894b9
commit fd9b4cc10f
3 changed files with 13 additions and 12 deletions

View File

@ -92,7 +92,7 @@ namespace Ryujinx.Graphics.Vulkan
private const float Epsilon = 1e-6f;
private bool FloatCompare(float a, float b)
private readonly bool FloatCompare(float a, float b)
{
return Math.Abs(a - b) < Epsilon;
}
@ -465,7 +465,7 @@ namespace Ryujinx.Graphics.Vulkan
api.CmdSetBlendConstants(commandBuffer, _blendConstants.AsSpan());
}
private void RecordDepthBias(VulkanRenderer gd, CommandBuffer commandBuffer)
private readonly void RecordDepthBias(VulkanRenderer gd, CommandBuffer commandBuffer)
{
gd.Api.CmdSetDepthBias(commandBuffer, _depthBiasConstantFactor, _depthBiasClamp, _depthBiasSlopeFactor);

View File

@ -481,6 +481,7 @@ namespace Ryujinx.Graphics.Vulkan
if (isMoltenVk)
{
//When widelines feature is not supported it must be 1.0f per spec.
rasterizationState.LineWidth = 1.0f;
}
@ -684,7 +685,7 @@ namespace Ryujinx.Graphics.Vulkan
{
if (!isMoltenVk)
{
//Requires Metal 3.1
//Requires Metal 3.1 and new MoltenVK
dynamicStates[currentIndex++] = DynamicState.VertexInputBindingStrideExt;
}
dynamicStates[currentIndex++] = DynamicState.CullModeExt;