• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #include "src/core/SkNormalFlatSource.h"
9 #include "src/core/SkNormalMapSource.h"
10 #include "src/core/SkNormalSource.h"
11 
12 // Generating vtable
~SkNormalSource()13 SkNormalSource::~SkNormalSource() {}
14 
RegisterFlattenables()15 void SkNormalSource::RegisterFlattenables() {
16     SK_REGISTER_FLATTENABLE(SkNormalMapSourceImpl);
17     SK_REGISTER_FLATTENABLE(SkNormalFlatSourceImpl);
18 }
19 
20