mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-14 15:12:40 +00:00
[PICA] Implement MAX
This commit is contained in:
parent
ca4726aba1
commit
448f84ceb4
2 changed files with 25 additions and 0 deletions
|
@ -16,6 +16,7 @@ namespace ShaderOpcodes {
|
|||
DP3 = 0x01,
|
||||
DP4 = 0x02,
|
||||
MUL = 0x08,
|
||||
MAX = 0x0C,
|
||||
MIN = 0x0D,
|
||||
RSQ = 0x0F,
|
||||
MOVA = 0x12,
|
||||
|
@ -93,6 +94,7 @@ class PICAShader {
|
|||
void ifu(u32 instruction);
|
||||
void loop(u32 instruction);
|
||||
void mad(u32 instruction);
|
||||
void max(u32 instruction);
|
||||
void min(u32 instruction);
|
||||
void mov(u32 instruction);
|
||||
void mova(u32 instruction);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue