ladybird/Libraries/LibWeb/WebGL/WebGLActiveInfo.cpp
2024-11-13 11:41:54 +01:00

20 lines
364 B
C++

/*
* 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;
}