From fa414e4d96c6460161fd750ad13bc50780d0c53a Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Wed, 31 Aug 2016 07:45:10 +0200 Subject: [PATCH] UWP ARM seems to have an issue with Sk4f being uninitialized: error C4700 --- src/core/SkRasterPipeline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/SkRasterPipeline.cpp b/src/core/SkRasterPipeline.cpp index c50383a..3412071 100644 --- a/src/core/SkRasterPipeline.cpp +++ b/src/core/SkRasterPipeline.cpp @@ -37,7 +37,7 @@ void SkRasterPipeline::extend(const SkRasterPipeline& src) { void SkRasterPipeline::run(size_t x, size_t n) { // It's fastest to start uninitialized if the compilers all let us. If not, next fastest is 0. - Sk4f v; + Sk4f v = { }; while (n >= 4) { fBodyStart(fBody.begin(), x, v,v,v,v, v,v,v,v); -- 2.7.4