Play looping MP4 behind auth screen

This commit is contained in:
Kelsi 2026-02-05 15:34:29 -08:00
parent 77a21609a8
commit 8c3aa6542e
6 changed files with 352 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include "auth/auth_handler.hpp"
#include "rendering/video_player.hpp"
#include <string>
#include <functional>
@ -83,6 +84,10 @@ private:
void loadLoginInfo();
static std::string getConfigPath();
bool loginInfoLoaded = false;
// Background video
bool videoInitAttempted = false;
rendering::VideoPlayer backgroundVideo;
};
}} // namespace wowee::ui