1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

LibWeb: Make 2D and 3D canvas rendering contexts GC-allocated

This commit is contained in:
Andreas Kling 2022-09-02 15:53:02 +02:00
parent b8d485e6f0
commit 4452b5ca09
11 changed files with 107 additions and 61 deletions

View file

@ -151,6 +151,10 @@ static bool impl_is_wrapper(Type const& type)
return true;
if (type.name == "MutationRecord"sv)
return true;
if (type.name == "CanvasRenderingContext2D"sv)
return true;
if (type.name == "WebGLRenderingContext"sv)
return true;
return false;
}