mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 08:25:07 +01:00
Pica: Fix DP3 instruction, which wasn't assigning to the w component
This commit is contained in:
parent
618434d7fc
commit
5a75cf8fd2
@ -221,7 +221,7 @@ static void ProcessShaderCode(VertexShaderState& state) {
|
||||
for (int i = 0; i < num_components; ++i)
|
||||
dot = dot + src1[i] * src2[i];
|
||||
|
||||
for (int i = 0; i < num_components; ++i) {
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
if (!swizzle.DestComponentEnabled(i))
|
||||
continue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user