From: Mikko Rasa Date: Sun, 7 Mar 2021 09:13:23 +0000 (+0200) Subject: Properly resolve arithmetic assignment operators X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=sidebyside;h=f639d088c478fe5d266f9f5779928735b5176976;hp=f639d088c478fe5d266f9f5779928735b5176976;p=libs%2Fgl.git Properly resolve arithmetic assignment operators After 50ab5ca operations like vec3 *= float were failing because the validator required both operands to be of the same type. Conversions also need to be resolved for the right-hand operand. ---