LibWeb: Add WebGLUniformLocation

This commit is contained in:
Jelle Raaijmakers 2024-11-13 10:11:08 +01:00 committed by Andreas Kling
parent f2a1643650
commit 889e7942fa
Notes: github-actions[bot] 2024-11-13 10:42:59 +00:00
7 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/WebGLUniformLocationPrototype.h>
#include <LibWeb/WebGL/WebGLUniformLocation.h>
namespace Web::WebGL {
JS_DEFINE_ALLOCATOR(WebGLUniformLocation);
WebGLUniformLocation::WebGLUniformLocation(JS::Realm& realm)
: WebGLObject(realm)
{
}
WebGLUniformLocation::~WebGLUniformLocation() = default;
}