blob: dba7635f6a32a05a652553d3f6d1ebdae1d974da [file] [log] [blame]
robertphillipsf42fca42016-01-27 05:00:04 -08001/*
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
13class SkXfermode;
14
15class SkOverdrawMode {
16public:
17 static SkXfermode* Create();
18
19 SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP();
20
21private:
22 SkOverdrawMode(); // can't be instantiated
23};
24
25#endif