mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 01:17:11 +02:00
Implement geometry shader passthrough (#1961)
* Implement geometry shader passthrough * Cache version change
This commit is contained in:
parent
22c1357d04
commit
c418cb34f5
5 changed files with 47 additions and 18 deletions
|
@ -81,6 +81,8 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
|
||||
public int SassVersion { get; }
|
||||
|
||||
public bool GpPassthrough { get; }
|
||||
|
||||
public bool DoesLoadOrStore { get; }
|
||||
public bool DoesFp64 { get; }
|
||||
|
||||
|
@ -136,6 +138,8 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
|
||||
SassVersion = commonWord0.Extract(17, 4);
|
||||
|
||||
GpPassthrough = commonWord0.Extract(24);
|
||||
|
||||
DoesLoadOrStore = commonWord0.Extract(26);
|
||||
DoesFp64 = commonWord0.Extract(27);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue