WebGLActiveInfo.h 467 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/Bindings/PlatformObject.h>
  8. namespace Web::WebGL {
  9. class WebGLActiveInfo : public Bindings::PlatformObject {
  10. WEB_PLATFORM_OBJECT(WebGLActiveInfo, Bindings::PlatformObject);
  11. JS_DECLARE_ALLOCATOR(WebGLActiveInfo);
  12. public:
  13. virtual ~WebGLActiveInfo();
  14. protected:
  15. explicit WebGLActiveInfo(JS::Realm&);
  16. };
  17. }