LibWeb: Implement the OES_element_index_uint WebGL extension

This commit is contained in:
Undefine
2025-11-30 20:38:41 +01:00
committed by Andrew Kaster
parent c37f1160fe
commit 3c4a31bca7
Notes: github-actions[bot] 2026-02-06 10:39:42 +00:00
8 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// https://registry.khronos.org/webgl/extensions/OES_element_index_uint/
// NOTE: Original OES_element_index_uint 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 OESElementIndexUint {
};