ladybird/Libraries/LibWeb/WebGL/WebGLProgram.cpp

22 lines
384 B
C++
Raw Normal View History

2024-11-13 09:59:10 +01:00
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/WebGLProgramPrototype.h>
#include <LibWeb/WebGL/WebGLProgram.h>
namespace Web::WebGL {
JS_DEFINE_ALLOCATOR(WebGLProgram);
WebGLProgram::WebGLProgram(JS::Realm& realm)
: WebGLObject(realm)
{
}
WebGLProgram::~WebGLProgram() = default;
}