mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 19:57:51 +00:00
gl_shader_decompiler: Fix MrgH0 decompilation
GLSL decompilation for HMergeH0 was wrong. This addresses that issue.
This commit is contained in:
parent
6d47914b88
commit
7e58372bb9
1 changed files with 2 additions and 2 deletions
|
@ -1078,8 +1078,8 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string HMergeH0(Operation operation) {
|
std::string HMergeH0(Operation operation) {
|
||||||
return "fromHalf2(vec2(toHalf2(" + Visit(operation[0]) + ")[1], toHalf2(" +
|
return "fromHalf2(vec2(toHalf2(" + Visit(operation[1]) + ")[0], toHalf2(" +
|
||||||
Visit(operation[1]) + ")[0]))";
|
Visit(operation[0]) + ")[1]))";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string HMergeH1(Operation operation) {
|
std::string HMergeH1(Operation operation) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue