Update comment

This commit is contained in:
Gabriel A 2024-05-22 21:31:40 -03:00
commit 1e187e1b40

View file

@ -716,11 +716,11 @@ namespace Ryujinx.Graphics.GAL
/// Checks if the texture format is a float or sRGB color format. /// Checks if the texture format is a float or sRGB color format.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Does not include normalized formats. Also does not include depth formats. /// Does not include normalized, compressed or depth formats.
/// Float and sRGB formats do not participate in logical operations. /// Float and sRGB formats do not participate in logical operations.
/// </remarks> /// </remarks>
/// <param name="format"></param> /// <param name="format">Texture format</param>
/// <returns></returns> /// <returns>True if the format is a float or sRGB color format, false otherwise</returns>
public static bool IsFloatOrSrgb(this Format format) public static bool IsFloatOrSrgb(this Format format)
{ {
switch (format) switch (format)