gl_shader_decompiler: Fix casts from fp32 to f16

Casts from f32 to f16 zeroes the higher half of the target register.
This commit is contained in:
ReinUsesLisp 2019-11-25 22:00:42 -03:00
parent 6d23b045a0
commit ef4446cb11
No known key found for this signature in database
GPG key ID: 2DFC508897B39CFE

View file

@ -1469,7 +1469,8 @@ private:
}
Expression HCastFloat(Operation operation) {
return {fmt::format("vec2({})", VisitOperand(operation, 0).AsFloat()), Type::HalfFloat};
return {fmt::format("vec2({}, 0.0f)", VisitOperand(operation, 0).AsFloat()),
Type::HalfFloat};
}
Expression HUnpack(Operation operation) {