Flutter Engine
 
Loading...
Searching...
No Matches
dl_types.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_DISPLAY_LIST_DL_TYPES_H_
6#define FLUTTER_DISPLAY_LIST_DL_TYPES_H_
7
8namespace flutter {
9
10enum class DlClipOp {
13};
14
15enum class DlPointMode {
16 kPoints, //!< draw each point separately
17 kLines, //!< draw each separate pair of points as a line segment
18 kPolygon, //!< draw each pair of overlapping points as a line segment
19};
20
22 kStrict,
23 kFast,
24};
25
26} // namespace flutter
27
28#endif // FLUTTER_DISPLAY_LIST_DL_TYPES_H_
DlPointMode
Definition dl_types.h:15
@ kLines
draw each separate pair of points as a line segment
@ kPolygon
draw each pair of overlapping points as a line segment
@ kPoints
draw each point separately
DlSrcRectConstraint
Definition dl_types.h:21