mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
This extension lets pages query the underlying GPU vendor and renderer strings via UNMASKED_VENDOR_WEBGL / UNMASKED_RENDERER_WEBGL. Some sites (e.g. yandex.com/maps) use it to decide whether to render vector tiles with WebGL or fall back to raster tiles.
32 lines
795 B
C++
32 lines
795 B
C++
/*
|
|
* 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::Extensions {
|
|
|
|
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;
|
|
};
|
|
|
|
}
|