mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-28 13:36:02 +00:00
4c3d2d5d75
* feat: introduce new shader loading state for progress tracking when writing shaders to disk * fix: move translation to bottom of locale file * fix: change back to foreach and add requested spacing between lines * style: fix formatting Co-authored-by: gdkchan <gab.dark.100@gmail.com> --------- Co-authored-by: gdkchan <gab.dark.100@gmail.com>
15 lines
No EOL
446 B
C#
15 lines
No EOL
446 B
C#
namespace Ryujinx.Graphics.Gpu.Shader
|
|
{
|
|
/// <summary>Shader cache loading states</summary>
|
|
public enum ShaderCacheState
|
|
{
|
|
/// <summary>Shader cache started loading</summary>
|
|
Start,
|
|
/// <summary>Shader cache is loading</summary>
|
|
Loading,
|
|
/// <summary>Shader cache is written to disk</summary>
|
|
Packaging,
|
|
/// <summary>Shader cache finished loading</summary>
|
|
Loaded
|
|
}
|
|
} |