WebGLActiveInfo.cpp 364 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/WebGL/WebGLActiveInfo.h>
  7. namespace Web::WebGL {
  8. JS_DEFINE_ALLOCATOR(WebGLActiveInfo);
  9. WebGLActiveInfo::WebGLActiveInfo(JS::Realm& realm)
  10. : Bindings::PlatformObject(realm)
  11. {
  12. }
  13. WebGLActiveInfo::~WebGLActiveInfo() = default;
  14. }