mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
18 lines
305 B
C++
18 lines
305 B
C++
/*
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/WebGL/WebGLObject.h>
|
|
|
|
namespace Web::WebGL {
|
|
|
|
WebGLObject::WebGLObject(JS::Realm& realm)
|
|
: Bindings::PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
WebGLObject::~WebGLObject() = default;
|
|
|
|
}
|