
org.lwjgl.openxr.XrActionSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-openxr Show documentation
Show all versions of lwjgl-openxr Show documentation
A royalty-free, open standard that provides high-performance access to Augmented Reality (AR) and Virtual Reality (VR)—collectively known as XR—platforms and devices.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.openxr;
/** Wraps an {@code XrActionSet} handle. */
public class XrActionSet extends DispatchableHandle {
private final XrInstance instance;
/**
* Creates an {@code XrActionSet} using the specified native handle and {@code XrInstance}.
*
* @param handle the native {@code XrActionSet} handle
* @param instance the {@code XrInstance} from which {@code handle} was created
*/
public XrActionSet(long handle, XrInstance instance) {
super(handle, instance.getCapabilities());
this.instance = instance;
}
/** Returns the {@code XrInstance} from which this handle was created. */
public XrInstance getInstance() {
return instance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy