LibWeb: Add WebGLActiveInfo

This commit is contained in:
Jelle Raaijmakers 2024-11-13 10:15:42 +01:00 committed by Andreas Kling
commit d63a979bde
Notes: github-actions[bot] 2024-11-13 10:42:53 +00:00
7 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,20 @@
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/WebGL/WebGLActiveInfo.h>
namespace Web::WebGL {
JS_DEFINE_ALLOCATOR(WebGLActiveInfo);
WebGLActiveInfo::WebGLActiveInfo(JS::Realm& realm)
: Bindings::PlatformObject(realm)
{
}
WebGLActiveInfo::~WebGLActiveInfo() = default;
}