mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-16 16:53:57 +12:00
[PICA interpreter] Implement RSQ, MAD, CALLU and boot SM64
This commit is contained in:
parent
f4fabdae40
commit
979519f785
4 changed files with 119 additions and 1 deletions
src/core/PICA
|
@ -100,6 +100,10 @@ void GPU::writeInternalReg(u32 index, u32 value, u32 mask) {
|
|||
shaderUnit.vs.uploadDescriptor(value);
|
||||
break;
|
||||
|
||||
case VertexBoolUniform:
|
||||
shaderUnit.vs.boolUniform = value & 0xffff;
|
||||
break;
|
||||
|
||||
case VertexIntUniform0: case VertexIntUniform1: case VertexIntUniform2: case VertexIntUniform3:
|
||||
shaderUnit.vs.uploadIntUniform(index - VertexIntUniform0, value);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue