All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.openxr.XrDebugUtilsMessengerEXT Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.3.6
Show newest version
/*
 * 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 XrDebugUtilsMessengerEXT} handle. */
public class XrDebugUtilsMessengerEXT extends DispatchableHandle {

    private final XrInstance instance;

    /**
     * Creates an {@code XrDebugUtilsMessengerEXT} using the specified native handle and {@code XrInstance}.
     *
     * @param handle   the native {@code XrDebugUtilsMessengerEXT} handle
     * @param instance the {@code XrInstance} from which {@code handle} was created
     */
    public XrDebugUtilsMessengerEXT(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