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 "SkNormalFlatSource.h" 9 #include "SkNormalMapSource.h" 10 #include "SkNormalSource.h" 11 12 // Generating vtable ~SkNormalSource()13SkNormalSource::~SkNormalSource() {} 14 RegisterFlattenables()15void SkNormalSource::RegisterFlattenables() { 16 SK_REGISTER_FLATTENABLE(SkNormalMapSourceImpl); 17 SK_REGISTER_FLATTENABLE(SkNormalFlatSourceImpl); 18 } 19 20