aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkMaskGamma.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkMaskGamma.h')
-rw-r--r--src/core/SkMaskGamma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkMaskGamma.h b/src/core/SkMaskGamma.h
index 16ea47b1b0..94219d42ac 100644
--- a/src/core/SkMaskGamma.h
+++ b/src/core/SkMaskGamma.h
@@ -92,7 +92,7 @@ void SkTMaskGamma_build_correcting_lut(uint8_t table[256], U8CPU srcI, SkScalar
* @param B The number of luminance bits to use [1, 8] from the blue channel.
*/
template <int R_LUM_BITS, int G_LUM_BITS, int B_LUM_BITS> class SkTMaskGamma : public SkRefCnt {
-
+
public:
/** Creates a linear SkTMaskGamma. */
@@ -151,7 +151,7 @@ public:
const uint8_t* getGammaTables() const {
return (const uint8_t*) fGammaTables;
}
-
+
private:
static const int MAX_LUM_BITS =
B_LUM_BITS > (R_LUM_BITS > G_LUM_BITS ? R_LUM_BITS : G_LUM_BITS)