ladybird/Libraries/LibWeb/WebGL/WebGLActiveInfo.cpp

21 lines
364 B
C++
Raw Normal View History

2024-11-13 10:15:42 +01:00
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/WebGL/WebGLActiveInfo.h>
namespace Web::WebGL {
GC_DEFINE_ALLOCATOR(WebGLActiveInfo);
2024-11-13 10:15:42 +01:00
WebGLActiveInfo::WebGLActiveInfo(JS::Realm& realm)
: Bindings::PlatformObject(realm)
{
}
WebGLActiveInfo::~WebGLActiveInfo() = default;
}