ladybird/Libraries/LibWeb/WebGL/Extensions/WebGLDebugRendererInfo.h

32 lines
783 B
C
Raw Normal View History

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