1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-24 00:06:27 -05:00

Implement parallel host shader cache compilation.

This commit is contained in:
riperiperi
2021-03-29 21:52:25 +01:00
parent bb43219f1d
commit ddf4b92a9c
7 changed files with 452 additions and 232 deletions

View File

@@ -0,0 +1,9 @@
namespace Ryujinx.Graphics.GAL
{
public enum ProgramLinkStatus
{
Incomplete,
Success,
Failure
}
}