Fix compiler warning/error in r10936
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 27 Aug 2013 16:31:31 +0000 (16:31 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 27 Aug 2013 16:31:31 +0000 (16:31 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@10938 2bbb7eff-a529-9590-31e7-b0007b416f81

src/effects/SkEmbossMaskFilter.cpp

index 315b8cb..7abe796 100644 (file)
@@ -63,7 +63,7 @@ static void normalize(SkScalar v[3]) {
 }
 
 SkEmbossMaskFilter::SkEmbossMaskFilter(SkScalar blurSigma, const Light& light)
-        : fBlurSigma(blurSigma), fLight(light) {
+    : fLight(light), fBlurSigma(blurSigma) {
     normalize(fLight.fDirection);
 }