ladybird/Libraries/LibWeb/WebGL/WebGLTexture.cpp

22 lines
384 B
C++
Raw Normal View History

2024-11-13 10:08:30 +01:00
/*
* 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 {
GC_DEFINE_ALLOCATOR(WebGLTexture);
2024-11-13 10:08:30 +01:00
WebGLTexture::WebGLTexture(JS::Realm& realm)
: WebGLObject(realm)
{
}
WebGLTexture::~WebGLTexture() = default;
}