Files
ladybird/Libraries/LibWeb/WebGL/Extensions/WebGLDebugRendererInfo.cpp
Shannon Booth 4178ec0af4 LibWeb/WebGL: Remove Extensions interface
No other third layer folder in LibWeb has its own namespace which
makes this a special case for the IDLGenerator when determining
namespaces. Instead of adding a special case, simply remove the
namespace.
2026-04-24 20:08:29 +02:00

41 lines
1.1 KiB
C++

/*
* Copyright (c) 2026, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Runtime/Realm.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Bindings/WebGLDebugRendererInfo.h>
#include <LibWeb/WebGL/Extensions/WebGLDebugRendererInfo.h>
#include <LibWeb/WebGL/WebGLRenderingContextBase.h>
namespace Web::WebGL {
GC_DEFINE_ALLOCATOR(WebGLDebugRendererInfo);
JS::ThrowCompletionOr<GC::Ref<JS::Object>> WebGLDebugRendererInfo::create(JS::Realm& realm, GC::Ref<WebGLRenderingContextBase> context)
{
return realm.create<WebGLDebugRendererInfo>(realm, context);
}
WebGLDebugRendererInfo::WebGLDebugRendererInfo(JS::Realm& realm, GC::Ref<WebGLRenderingContextBase> context)
: PlatformObject(realm)
, m_context(context)
{
}
void WebGLDebugRendererInfo::initialize(JS::Realm& realm)
{
WEB_SET_PROTOTYPE_FOR_INTERFACE(WebGLDebugRendererInfo);
Base::initialize(realm);
}
void WebGLDebugRendererInfo::visit_edges(Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_context);
}
}