diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-08-27 16:31:31 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-08-27 16:31:31 +0000 |
commit | b75233b7fabb818aea0f5c940848c0d6f9f6181e (patch) | |
tree | ed27a041cbb4611c0dd7fa6636cae2e06346e32d | |
parent | 9f842d390499e7900e25767fc27504669455374b (diff) |
Fix compiler warning/error in r10936
git-svn-id: http://skia.googlecode.com/svn/trunk@10938 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/effects/SkEmbossMaskFilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/SkEmbossMaskFilter.cpp b/src/effects/SkEmbossMaskFilter.cpp index 315b8cbab4..7abe796ec7 100644 --- a/src/effects/SkEmbossMaskFilter.cpp +++ b/src/effects/SkEmbossMaskFilter.cpp @@ -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); } |