Ryujinx/Ryujinx.Graphics.Gpu/Constants.cs
riperiperi 9b7335a63b
Improve linear texture compatibility rules (#2099)
* Improve linear texture compatibility rules

Fixes an issue where small or width-aligned (rather than byte aligned) textures would fail to create a view of existing data. Creates a copy dependency as size change may be risky.

* Minor cleanup

* Remove Size Change for Copy Depenedencies

The copy to the target (potentially different sized) texture can properly deal with cropping by itself.

* Move StrideAlignment and GobAlignment into Constants
2021-03-19 02:17:38 +01:00

83 lines
2.6 KiB
C#

namespace Ryujinx.Graphics.Gpu
{
/// <summary>
/// Common Maxwell GPU constants.
/// </summary>
static class Constants
{
/// <summary>
/// Maximum number of compute uniform buffers.
/// </summary>
/// <remarks>
/// This does not reflect the hardware count, the API will emulate some constant buffers using
/// global memory to make up for the low amount of compute constant buffers supported by hardware (only 8).
/// </remarks>
public const int TotalCpUniformBuffers = 17; // 8 hardware constant buffers + 9 emulated (14 available to the user).
/// <summary>
/// Maximum number of compute storage buffers.
/// </summary>
/// <remarks>
/// The maximum number of storage buffers is API limited, the hardware supports a unlimited amount.
/// </remarks>
public const int TotalCpStorageBuffers = 16;
/// <summary>
/// Maximum number of graphics uniform buffers.
/// </summary>
public const int TotalGpUniformBuffers = 18;
/// <summary>
/// Maximum number of graphics storage buffers.
/// </summary>
/// <remarks>
/// The maximum number of storage buffers is API limited, the hardware supports a unlimited amount.
/// </remarks>
public const int TotalGpStorageBuffers = 16;
/// <summary>
/// Maximum number of transform feedback buffers.
/// </summary>
public const int TotalTransformFeedbackBuffers = 4;
/// <summary>
/// Maximum number of render target color buffers.
/// </summary>
public const int TotalRenderTargets = 8;
/// <summary>
/// Number of shader stages.
/// </summary>
public const int ShaderStages = 5;
/// <summary>
/// Maximum number of vertex attributes.
/// </summary>
public const int TotalVertexAttribs = 16;
/// <summary>
/// Maximum number of vertex buffers.
/// </summary>
public const int TotalVertexBuffers = 16;
/// <summary>
/// Maximum number of viewports.
/// </summary>
public const int TotalViewports = 16;
/// <summary>
/// Maximum size of gl_ClipDistance array in shaders.
/// </summary>
public const int TotalClipDistances = 8;
/// <summary>
/// Byte alignment for texture stride.
/// </summary>
public const int StrideAlignment = 32;
/// <summary>
/// Byte alignment for block linear textures
/// </summary>
public const int GobAlignment = 64;
}
}