mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
1e0b742903
(cherry picked from commit e6ee7f3e642acd548b3ae96c47f7174ceb98f730)
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;
|
|
|
|
}
|