[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / shapes / paint / stroke_cap.hpp
1 #ifndef _RIVE_STROKE_CAP_HPP_
2 #define _RIVE_STROKE_CAP_HPP_
3 namespace rive
4 {
5         /// Style used for stroke line endings.
6         enum class StrokeCap : unsigned int
7         {
8                 /// Flat edge at the start/end of the stroke.
9                 butt = 0,
10
11                 /// Circular edge at the start/end of the stroke.
12                 round = 1,
13
14                 /// Flat protruding edge at the start/end of the stroke.
15                 square = 2
16         };
17 } // namespace rive
18 #endif