mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 03:15:45 +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) {
|
||||
return "fromHalf2(vec2(toHalf2(" + Visit(operation[0]) + ")[1], toHalf2(" +
|
||||
Visit(operation[1]) + ")[0]))";
|
||||
return "fromHalf2(vec2(toHalf2(" + Visit(operation[1]) + ")[0], toHalf2(" +
|
||||
Visit(operation[0]) + ")[1]))";
|
||||
}
|
||||
|
||||
std::string HMergeH1(Operation operation) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue