LibWeb: Add a webgl_version getter to OpenGLContext

This commit is contained in:
Undefine 2025-11-03 17:38:56 +01:00 committed by Alexander Kalenik
parent df1aeda955
commit 395bc3ee27
Notes: github-actions[bot] 2025-11-05 01:20:50 +00:00

View file

@ -44,6 +44,8 @@ public:
Vector<String> get_supported_extensions();
void request_extension(char const* extension_name);
WebGLVersion webgl_version() const { return m_webgl_version; }
private:
NonnullRefPtr<Gfx::SkiaBackendContext> m_skia_backend_context;
Gfx::IntSize m_size;