diff options
Diffstat (limited to 'skia/ext/convolver.h')
-rw-r--r-- | skia/ext/convolver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/ext/convolver.h b/skia/ext/convolver.h index 97f191c..80c48a9 100644 --- a/skia/ext/convolver.h +++ b/skia/ext/convolver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -25,11 +25,11 @@ namespace skia { // Entries are stored in fixed point, shifted left by kShiftBits. class ConvolutionFilter1D { public: + typedef short Fixed; + // The number of bits that fixed point values are shifted by. enum { kShiftBits = 14 }; - typedef short Fixed; - ConvolutionFilter1D(); ~ConvolutionFilter1D(); |