mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-03 05:22:59 -06:00
28 lines
717 B
C#
28 lines
717 B
C#
|
namespace Ryujinx.Graphics.Gpu.Shader
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Holds counts for the resources used by a shader.
|
||
|
/// </summary>
|
||
|
class ResourceCounts
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Total of uniform buffers used by the shaders.
|
||
|
/// </summary>
|
||
|
public int UniformBuffersCount;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Total of storage buffers used by the shaders.
|
||
|
/// </summary>
|
||
|
public int StorageBuffersCount;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Total of textures used by the shaders.
|
||
|
/// </summary>
|
||
|
public int TexturesCount;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Total of images used by the shaders.
|
||
|
/// </summary>
|
||
|
public int ImagesCount;
|
||
|
}
|
||
|
}
|