LibWeb/WebGL+Meta: Stub getSupportedExtensions() and getExtension()

This commit is contained in:
Aliaksandr Kalenik
2024-12-02 21:25:20 +01:00
committed by Alexander Kalenik
parent 64fec8b2de
commit 7e78d7d332
4 changed files with 20 additions and 2 deletions

View File

@@ -171,6 +171,11 @@ public:
continue;
}
if (function.name == "getSupportedExtensions"sv || function.name == "getExtension"sv) {
// Implemented in WebGLRenderingContext
continue;
}
StringBuilder function_declaration;
StringBuilder function_parameters;