mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
19 lines
343 B
C++
19 lines
343 B
C++
/*
|
|
* Copyright (c) 2025, Psychpsyo <psychpsyo@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/XRRenderStatePrototype.h>
|
|
#include <LibWeb/WebXR/XRRenderState.h>
|
|
|
|
namespace Web::WebXR {
|
|
|
|
GC_DEFINE_ALLOCATOR(XRRenderState);
|
|
|
|
XRRenderState::XRRenderState(JS::Realm& realm)
|
|
: PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
}
|