regenerated FP files to make bot happy

Bug: skia:
Change-Id: I487e17d32d26f9f5acafe011ea1a6ad90cedf9b8
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/207122
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
diff --git a/src/gpu/effects/GrComposeLerpRedEffect.cpp b/src/gpu/effects/GrComposeLerpRedEffect.cpp
index fceeff1..2f3a5e4 100644
--- a/src/gpu/effects/GrComposeLerpRedEffect.cpp
+++ b/src/gpu/effects/GrComposeLerpRedEffect.cpp
@@ -36,11 +36,10 @@
         }
         SkString _child2("_child2");
         this->emitChild(_outer.lerp_index, &_child2, args);
-        fragBuilder->codeAppendf(
-                "%s = mix(%s ? %s : %s, %s ? %s : %s, %s.x);\n%s = half4(1.0, 0.0, 1.0, 1.0);\n",
-                args.fOutputColor, _outer.child1_index >= 0 ? "true" : "false", _child0.c_str(),
-                args.fInputColor, _outer.child2_index >= 0 ? "true" : "false", _child1.c_str(),
-                args.fInputColor, _child2.c_str(), args.fOutputColor);
+        fragBuilder->codeAppendf("%s = mix(%s ? %s : %s, %s ? %s : %s, %s.x);\n", args.fOutputColor,
+                                 _outer.child1_index >= 0 ? "true" : "false", _child0.c_str(),
+                                 args.fInputColor, _outer.child2_index >= 0 ? "true" : "false",
+                                 _child1.c_str(), args.fInputColor, _child2.c_str());
     }
 
 private: