Improve shader sending method to GAL, use a memory interface instead of reading a fixed array size and sending every time
This commit is contained in:
parent
84996ccd36
commit
79e0070363
12 changed files with 72 additions and 63 deletions
|
@ -15,7 +15,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
|||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
int Target = ((int)(OpCode >> 20) << 8) >> 8;
|
||||
long Target = ((int)(OpCode >> 20) << 8) >> 8;
|
||||
|
||||
Target += Block.Position + 8;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue