mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
LibWeb: Add WebGLObject interface
This commit is contained in:
parent
e8d91f2234
commit
e6ee7f3e64
Notes:
github-actions[bot]
2024-11-13 10:43:42 +00:00
Author: https://github.com/gmta
Commit: e6ee7f3e64
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2308
7 changed files with 59 additions and 0 deletions
18
Libraries/LibWeb/WebGL/WebGLObject.cpp
Normal file
18
Libraries/LibWeb/WebGL/WebGLObject.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* 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;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue