mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 09:33:20 +00:00
22 lines
384 B
C++
22 lines
384 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/Bindings/WebGLTexturePrototype.h>
|
||
|
#include <LibWeb/WebGL/WebGLTexture.h>
|
||
|
|
||
|
namespace Web::WebGL {
|
||
|
|
||
|
JS_DEFINE_ALLOCATOR(WebGLTexture);
|
||
|
|
||
|
WebGLTexture::WebGLTexture(JS::Realm& realm)
|
||
|
: WebGLObject(realm)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
WebGLTexture::~WebGLTexture() = default;
|
||
|
|
||
|
}
|