Merge pull request #2177 from riperiperi/feature/parallel-shader-cache
Allow parallel shader compilation when loading a shader cache
This commit is contained in:
commit
b5c72b44de
16 changed files with 785 additions and 251 deletions
|
@ -4,6 +4,8 @@ namespace Ryujinx.Graphics.GAL
|
|||
{
|
||||
public interface IProgram : IDisposable
|
||||
{
|
||||
ProgramLinkStatus CheckProgramLink(bool blocking);
|
||||
|
||||
byte[] GetBinary();
|
||||
}
|
||||
}
|
||||
|
|
9
Ryujinx.Graphics.GAL/ProgramLinkStatus.cs
Normal file
9
Ryujinx.Graphics.GAL/ProgramLinkStatus.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public enum ProgramLinkStatus
|
||||
{
|
||||
Incomplete,
|
||||
Success,
|
||||
Failure
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue