File size: 877 Bytes
7fc5a59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef OPENPOSE_GUI_ENUM_CLASSES_HPP
#define OPENPOSE_GUI_ENUM_CLASSES_HPP

namespace op
{
    /**
    * GUI display modes.
     * An enum class with the different output screen options. E.g., 2-D, 3-D, all, none.
     */
    enum class DisplayMode : unsigned short
    {
        NoDisplay,  /**< No display. */
        DisplayAll, /**< All (2-D and 3-D/Adam) displays */
        Display2D,  /**< Only 2-D display. */
        Display3D,  /**< Only 3-D display. */
        DisplayAdam /**< Only Adam display. */
    };

    /**
     * Full screen modes.
     * An enum class with the different full screen mode options, i.e., full screen or windored.
     */
    enum class FullScreenMode : bool
    {
        FullScreen, /**< Full screen mode. */
        Windowed,   /**< Windowed mode, depending on the frame output size. */
    };
}

#endif // OPENPOSE_GUI_ENUM_CLASSES_HPP