gl_shader_decompiler: Fixup AssignCompositeHalf

This commit is contained in:
ReinUsesLisp 2018-12-26 15:30:23 -03:00
parent 50195b1704
commit bb12f99b20

View File

@ -808,7 +808,7 @@ private:
if (meta.count > 2) {
const auto dst2 = std::get<GprNode>(*operation[2]).GetIndex();
const std::string src2 = "vec2(" + ReadComponent(2) + ", " + ReadComponent(3) + ')';
code.AddLine(GetRegister(dst2) + " = utof(packHalf2x16(" + src2 + "))");
code.AddLine(GetRegister(dst2) + " = utof(packHalf2x16(" + src2 + "));");
}
return {};
}