HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
gui_window_state.hpp
1// Copyright Take Vos 2021.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7namespace tt {
8
9enum class gui_window_state {
10 initializing,
11 no_window,
12 no_device,
13 no_surface,
14 no_swapchain,
15 ready_to_render,
16 swapchain_lost,
17 surface_lost,
18 device_lost,
19 window_lost,
20};
21
22}