DescriptionOK, trying to explain this.
Ci *= color_C is legal
Ci = 0 is legal as a special case (clear the closure)
but
X *= (zero valued thing)
gets optimized to
X = (zero valued thing)
So, we were turning
color_C = ...;
Ci *= color_C;
into
color_const = 0;
Ci = color_const;
and were hitting a runtime assertion. Oops. No worries, just fix the runtime.
Patch Set 1 #
MessagesTotal messages: 2
|