mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 08:31:05 +00:00
Implementing DPH/DPHI vertex shader opcodes
This commit is contained in:
parent
f1ff0fbf07
commit
d387839269
@ -230,6 +230,21 @@ static void ProcessShaderCode(VertexShaderState& state) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case OpCode::Id::DPH:
|
||||||
|
case OpCode::Id::DPHI:
|
||||||
|
{
|
||||||
|
float24 dot = src2[3];
|
||||||
|
for (int i = 0; i < 3; ++i)
|
||||||
|
dot += src1[i] * src2[i];
|
||||||
|
|
||||||
|
for (int i = 0; i < 4; ++i) {
|
||||||
|
if (!swizzle.DestComponentEnabled(i))
|
||||||
|
continue;
|
||||||
|
dest[i] = dot;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Reciprocal
|
// Reciprocal
|
||||||
case OpCode::Id::RCP:
|
case OpCode::Id::RCP:
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user