diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-01-01 12:39:09 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 92703af5558258da078d876b1d46e916b1065978 (patch) | |
| tree | 6579863103b145b3e7345e42fc03caf870622b43 /Ryujinx.Graphics.Gpu/Image/FormatInfo.cs | |
| parent | 40ef18d7599971c7387779d752a73568685d3432 (diff) | |
Address PR feedback
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/FormatInfo.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/FormatInfo.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs b/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs index 4f73bfa8..12f3aecb 100644 --- a/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs +++ b/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs @@ -18,13 +18,19 @@ namespace Ryujinx.Graphics.Gpu.Image public Format Format { get; } /// <summary> - /// The block width for compressed formats. Must be 1 for non-compressed formats. + /// The block width for compressed formats. /// </summary> + /// <remarks> + /// Must be 1 for non-compressed formats. + /// </remarks> public int BlockWidth { get; } /// <summary> - /// The block height for compressed formats. Must be 1 for non-compressed formats. + /// The block height for compressed formats. /// </summary> + /// <remarks> + /// Must be 1 for non-compressed formats. + /// </remarks> public int BlockHeight { get; } /// <summary> |
