Tatooine
window.h
Go to the documentation of this file.
1#ifndef TATOOINE_GL_GLFW_WINDOW_H
2#define TATOOINE_GL_GLFW_WINDOW_H
3//==============================================================================
6
7#include <string>
8//==============================================================================
9namespace tatooine::gl::glfw {
10//==============================================================================
12 //============================================================================
13 window(size_t const width, size_t const height,
14 std::string const& title = "tatooine");
15 //----------------------------------------------------------------------------
16 auto should_close() const -> bool;
17 auto swap_buffers() -> void;
18};
19//==============================================================================
20} // namespace tatooine::gl::glfw
21//==============================================================================
22#endif
Definition: api.h:8
Definition: base.h:8
Definition: window.h:11
auto should_close() const -> bool
auto swap_buffers() -> void
window(size_t const width, size_t const height, std::string const &title="tatooine")
Definition: window_notifier.h:122