Files
serenity/Userland/Libraries/LibWeb/WebGL/WebGLActiveInfo.h
Jelle Raaijmakers b288bfd994 LibWeb: Add WebGLActiveInfo
(cherry picked from commit d63a979bde54ad93422c2fadb5cf24cbc3339e07)
2024-11-13 19:32:27 -05:00

25 lines
467 B
C++

/*
* 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&);
};
}