mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
[PICA] Implement dp3
This commit is contained in:
parent
3706c7ee0c
commit
cd2da6d50f
2 changed files with 26 additions and 0 deletions
|
@ -13,6 +13,7 @@ enum class ShaderType {
|
|||
namespace ShaderOpcodes {
|
||||
enum : u32 {
|
||||
ADD = 0x00,
|
||||
DP3 = 0x01,
|
||||
DP4 = 0x02,
|
||||
MUL = 0x08,
|
||||
MOVA = 0x12,
|
||||
|
@ -56,6 +57,7 @@ class PICAShader {
|
|||
|
||||
// Shader opcodes
|
||||
void add(u32 instruction);
|
||||
void dp3(u32 instruction);
|
||||
void dp4(u32 instruction);
|
||||
void loop(u32 instruction);
|
||||
void mov(u32 instruction);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue