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 #ifndef SkOverdrawMode_DEFINED
9 #define SkOverdrawMode_DEFINED
10 
11 #include "SkFlattenable.h"
12 
13 class SkXfermode;
14 
15 class SkOverdrawMode {
16 public:
17     static SkXfermode* Create();
18 
19     SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP();
20 
21 private:
22     SkOverdrawMode(); // can't be instantiated
23 };
24 
25 #endif
26