Set default resolution for our opengl fbo to a higher value

This commit is contained in:
Ylva Selling
2023-02-09 12:02:08 -05:00
parent ee22b75da8
commit 6f440c0ada

View File

@@ -128,7 +128,7 @@ private:
bool _isInitialized = false;
bool _isSeeking = false;
double _videoDuration = 0.0;
glm::ivec2 _videoResolution = glm::ivec2(2048, 1024);
glm::ivec2 _videoResolution = glm::ivec2(4096, 2048);
// libmpv
mpv_handle* _mpvHandle = nullptr;