LibWeb: Add WebGLActiveInfo

This commit is contained in:
Jelle Raaijmakers 2024-11-13 10:15:42 +01:00 committed by Andreas Kling
commit d63a979bde
Notes: github-actions[bot] 2024-11-13 10:42:53 +00:00
7 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,24 @@
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Bindings/PlatformObject.h>
namespace Web::WebGL {
class WebGLActiveInfo : public Bindings::PlatformObject {
WEB_PLATFORM_OBJECT(WebGLActiveInfo, Bindings::PlatformObject);
JS_DECLARE_ALLOCATOR(WebGLActiveInfo);
public:
virtual ~WebGLActiveInfo();
protected:
explicit WebGLActiveInfo(JS::Realm&);
};
}