systeminfo: print more render info

This commit is contained in:
Vaxry 2025-07-20 14:51:10 +02:00
parent b7a91e02e9
commit a3d59b525b
No known key found for this signature in database
GPG key ID: 665806380871D640
2 changed files with 29 additions and 3 deletions

View file

@ -304,13 +304,15 @@ class CHyprOpenGLImpl {
SP<CTexture> m_screencopyDeniedTexture;
private:
enum eEGLContextVersion : uint8_t {
EGL_CONTEXT_GLES_2_0 = 0,
EGL_CONTEXT_GLES_3_0,
EGL_CONTEXT_GLES_3_2,
};
eEGLContextVersion m_eglContextVersion = EGL_CONTEXT_GLES_3_2;
private:
struct {
GLint x = 0;
GLint y = 0;
@ -320,8 +322,6 @@ class CHyprOpenGLImpl {
std::unordered_map<int, bool> m_capStatus;
eEGLContextVersion m_eglContextVersion = EGL_CONTEXT_GLES_3_2;
std::vector<SDRMFormat> m_drmFormats;
bool m_hasModifiers = false;