mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibWeb: Make WebGL extensions creation agnostic of WebGL version
This commit is contained in:
committed by
Jelle Raaijmakers
parent
502f2618aa
commit
5a029b4533
Notes:
github-actions[bot]
2026-03-11 19:21:54 +00:00
Author: https://github.com/cqundefine Commit: https://github.com/LadybirdBrowser/ladybird/commit/5a029b4533c Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8285 Reviewed-by: https://github.com/gmta ✅
@@ -16,16 +16,16 @@ class OESElementIndexUint : public Bindings::PlatformObject {
|
||||
GC_DECLARE_ALLOCATOR(OESElementIndexUint);
|
||||
|
||||
public:
|
||||
static JS::ThrowCompletionOr<GC::Ptr<OESElementIndexUint>> create(JS::Realm&, GC::Ref<WebGLRenderingContext>);
|
||||
static JS::ThrowCompletionOr<GC::Ptr<OESElementIndexUint>> create(JS::Realm&, GC::Ref<WebGLRenderingContextBase>);
|
||||
|
||||
protected:
|
||||
void initialize(JS::Realm&) override;
|
||||
void visit_edges(Visitor&) override;
|
||||
|
||||
private:
|
||||
OESElementIndexUint(JS::Realm&, GC::Ref<WebGLRenderingContext>);
|
||||
OESElementIndexUint(JS::Realm&, GC::Ref<WebGLRenderingContextBase>);
|
||||
|
||||
GC::Ref<WebGLRenderingContext> m_context;
|
||||
GC::Ref<WebGLRenderingContextBase> m_context;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user