org.lwjgl.openxr.XrHandTrackerEXT Maven / Gradle / Ivy
/*
* 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 XrHandTrackerEXT} handle. */
public class XrHandTrackerEXT extends DispatchableHandle {
private final XrSession session;
/**
* Creates an {@code XrHandTrackerEXT} using the specified native handle and {@code XrSession}.
*
* @param handle the native {@code XrHandTrackerEXT} handle
* @param session the {@code XrSession} from which {@code handle} was created
*/
public XrHandTrackerEXT(long handle, XrSession session) {
super(handle, session.getCapabilities());
this.session = session;
}
/** Returns the {@code XrSession} from which this handle was created. */
public XrSession getSession() {
return session;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy