diff options
| author | riperiperi <rhy3756547@hotmail.com> | 2021-03-29 21:52:25 +0100 |
|---|---|---|
| committer | riperiperi <rhy3756547@hotmail.com> | 2021-04-18 17:33:58 +0100 |
| commit | ddf4b92a9cfbe98f798dd86a7c123b065a832d51 (patch) | |
| tree | aead39221f1975579d00446f181750a299960bca /Ryujinx.Graphics.GAL/IProgram.cs | |
| parent | bb43219f1dfc2fc35e21bcccab4d96fba5e01f34 (diff) | |
Implement parallel host shader cache compilation.
Diffstat (limited to 'Ryujinx.Graphics.GAL/IProgram.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/IProgram.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/IProgram.cs b/Ryujinx.Graphics.GAL/IProgram.cs index 5ab8346f..272a2f7d 100644 --- a/Ryujinx.Graphics.GAL/IProgram.cs +++ b/Ryujinx.Graphics.GAL/IProgram.cs @@ -4,6 +4,8 @@ namespace Ryujinx.Graphics.GAL { public interface IProgram : IDisposable { + ProgramLinkStatus CheckProgramLink(bool blocking); + byte[] GetBinary(); } } |
