LibWeb/WebGL: Map WebGL extensions to the required extensions

This is used to put together the list of supported WebGL extensions
based on the available extensions, per-extension required extensions
and WebGL version.
This commit is contained in:
Luke Wilde 2025-01-17 15:42:17 +00:00 committed by Andreas Kling
commit 915c36c366
Notes: github-actions[bot] 2025-01-21 20:37:14 +00:00
2 changed files with 89 additions and 62 deletions

View file

@ -41,6 +41,7 @@ private:
Gfx::IntSize m_size;
RefPtr<Gfx::PaintingSurface> m_painting_surface;
NonnullOwnPtr<Impl> m_impl;
Optional<Vector<String>> m_requestable_extensions;
};
}