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

org.lwjgl.util.remotery.RMTInputHandler Maven / Gradle / Ivy

Go to download

A realtime CPU/GPU profiler hosted in a single C file with a viewer that runs in a web browser.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.util.remotery;

import javax.annotation.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

/**
 * 

Type

* *
 * void* (*) (
 *     const char *text,
 *     void *context
 * )
*/ public abstract class RMTInputHandler extends Callback implements RMTInputHandlerI { /** * Creates a {@code RMTInputHandler} instance from the specified function pointer. * * @return the new {@code RMTInputHandler} */ public static RMTInputHandler create(long functionPointer) { RMTInputHandlerI instance = Callback.get(functionPointer); return instance instanceof RMTInputHandler ? (RMTInputHandler)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */ @Nullable public static RMTInputHandler createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code RMTInputHandler} instance that delegates to the specified {@code RMTInputHandlerI} instance. */ public static RMTInputHandler create(RMTInputHandlerI instance) { return instance instanceof RMTInputHandler ? (RMTInputHandler)instance : new Container(instance.address(), instance); } protected RMTInputHandler() { super(SIGNATURE); } private RMTInputHandler(long functionPointer) { super(functionPointer); } private static final class Container extends RMTInputHandler { private final RMTInputHandlerI delegate; Container(long functionPointer, RMTInputHandlerI delegate) { super(functionPointer); this.delegate = delegate; } @Override public long invoke(long text, long context) { return delegate.invoke(text, context); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy