This commit is contained in:
dec05eba
2024-09-08 17:07:22 +02:00
parent 3d5e8baa5f
commit b145d957e3
29 changed files with 1141 additions and 687 deletions

View File

@@ -32,11 +32,20 @@ namespace gsr {
mgl::Texture settings_texture;
mgl::Texture folder_texture;
mgl::Texture up_arrow_texture;
mgl::Texture replay_button_texture;
mgl::Texture record_button_texture;
mgl::Texture stream_button_texture;
mgl::Texture close_texture;
mgl::Texture logo_texture;
double double_click_timeout_seconds = 0.4;
// Reloads fonts
bool set_window_size(mgl::vec2i window_size);
};
bool init_theme(const GsrInfo &gsr_info, mgl::vec2i window_size, const std::string &resources_path);
bool init_theme(const GsrInfo &gsr_info, const std::string &resources_path);
void deinit_theme();
Theme& get_theme();
}