mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
1097eaf38b
(cherry picked from commit f2a164365007ad5e06f3ce47702ded55c42fbcb6)
21 lines
384 B
C++
21 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;
|
|
|
|
}
|