blob: c2981c77abec44fdc02872e6e43e0e2228d1d5d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_LAYERS_DRAW_MODE_H_
#define CC_LAYERS_DRAW_MODE_H_
namespace cc {
enum DrawMode {
DRAW_MODE_NONE,
DRAW_MODE_HARDWARE,
DRAW_MODE_SOFTWARE,
DRAW_MODE_RESOURCELESS_SOFTWARE
};
} // namespace cc
#endif // CC_LAYERS_DRAW_MODE_H_
|