2025-11-18 17:48:38 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025, Psychpsyo <psychpsyo@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2026-04-18 05:54:06 -03:00
|
|
|
#include <LibWeb/Bindings/XRRenderState.h>
|
2025-11-18 17:48:38 -03:00
|
|
|
#include <LibWeb/WebXR/XRRenderState.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::WebXR {
|
|
|
|
|
|
|
|
|
|
GC_DEFINE_ALLOCATOR(XRRenderState);
|
|
|
|
|
|
|
|
|
|
XRRenderState::XRRenderState(JS::Realm& realm)
|
|
|
|
|
: PlatformObject(realm)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|