Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_Window.h
| Show All 35 Lines | |||||
| * be implemented by sub-classes of this class. | * be implemented by sub-classes of this class. | ||||
| */ | */ | ||||
| class GHOST_Window : public GHOST_IWindow { | class GHOST_Window : public GHOST_IWindow { | ||||
| public: | public: | ||||
| /** | /** | ||||
| * Constructor. | * Constructor. | ||||
| * Creates a new window and opens it. | * Creates a new window and opens it. | ||||
| * To check if the window was created properly, use the getValid() method. | * To check if the window was created properly, use the getValid() method. | ||||
| * \param width: The width the window. | * \param width: The width of the window. | ||||
| * \param height: The height the window. | * \param height: The height of the window. | ||||
| * \param state: The state the window is initially opened with. | * \param state: The state the window is initially opened with. | ||||
| * \param wantStereoVisual: Stereo visual for quad buffered stereo. | * \param wantStereoVisual: Stereo visual for quad buffered stereo. | ||||
| * \param exclusive: Use to show the window ontop and ignore others (used full-screen). | * \param exclusive: Use to show the window ontop and ignore others (used full-screen). | ||||
| */ | */ | ||||
| GHOST_Window(uint32_t width, | GHOST_Window(uint32_t width, | ||||
| uint32_t height, | uint32_t height, | ||||
| GHOST_TWindowState state, | GHOST_TWindowState state, | ||||
| const bool wantStereoVisual = false, | const bool wantStereoVisual = false, | ||||
| ▲ Show 20 Lines • Show All 401 Lines • Show Last 20 Lines | |||||