LibWeb/WebGL: Implement compressedTex(Sub)Image2D

This commit is contained in:
Luke Wilde 2025-01-28 17:26:23 +00:00 committed by Andreas Kling
commit 484008d440
Notes: github-actions[bot] 2025-02-09 00:01:50 +00:00
4 changed files with 64 additions and 4 deletions

View file

@ -14,6 +14,7 @@ class WebGLRenderingContextBase {
public:
virtual GC::Cell const* gc_cell() const = 0;
virtual void visit_edges(JS::Cell::Visitor&) = 0;
virtual OpenGLContext& context() = 0;
};
}