mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
LibWeb: Implement WEBGL_debug_renderer_info extension
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.
This commit is contained in:
committed by
Alexander Kalenik
parent
eb9432fcb8
commit
3c7b3a0fe2
Notes:
github-actions[bot]
2026-04-22 20:40:35 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/3c7b3a0fe2e Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/9043
13
Libraries/LibWeb/WebGL/Extensions/WebGLDebugRendererInfo.idl
Normal file
13
Libraries/LibWeb/WebGL/Extensions/WebGLDebugRendererInfo.idl
Normal file
@@ -0,0 +1,13 @@
|
||||
#import <WebGL/Types.idl>
|
||||
|
||||
// https://registry.khronos.org/webgl/extensions/WEBGL_debug_renderer_info/
|
||||
// NOTE: Original WEBGL_debug_renderer_info name is changed to title case,
|
||||
// so it matches corresponding C++ class name, and does not require
|
||||
// IDL generator to handle snake_case to TitleCase conversion.
|
||||
// Having a different name is totally fine, because LegacyNoInterfaceObject
|
||||
// prevents the name from being exposed to JavaScript.
|
||||
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
|
||||
interface WebGLDebugRendererInfo {
|
||||
const GLenum UNMASKED_VENDOR_WEBGL = 0x9245;
|
||||
const GLenum UNMASKED_RENDERER_WEBGL = 0x9246;
|
||||
};
|
||||
Reference in New Issue
Block a user