ladybird/Libraries/LibWeb/WebGL/WebGLActiveInfo.h

25 lines
467 B
C
Raw Normal View History

2024-11-13 10:15:42 +01:00
/*
* 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);
GC_DECLARE_ALLOCATOR(WebGLActiveInfo);
2024-11-13 10:15:42 +01:00
public:
virtual ~WebGLActiveInfo();
protected:
explicit WebGLActiveInfo(JS::Realm&);
};
}