/* * Copyright (c) 2026, Aliaksandr Kalenik * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::WebGL { class WebGLDebugRendererInfo : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(WebGLDebugRendererInfo, Bindings::PlatformObject); GC_DECLARE_ALLOCATOR(WebGLDebugRendererInfo); public: static JS::ThrowCompletionOr> create(JS::Realm&, GC::Ref); protected: void initialize(JS::Realm&) override; void visit_edges(Visitor&) override; private: WebGLDebugRendererInfo(JS::Realm&, GC::Ref); GC::Ref m_context; }; }