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

org.lwjgl.glfw.GLFWCharCallbackI Maven / Gradle / Ivy

Go to download

A multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.

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.glfw;

import org.lwjgl.system.*;
import org.lwjgl.system.libffi.*;

import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.libffi.LibFFI.*;

/**
 * Instances of this interface may be passed to the {@link GLFW#glfwSetCharCallback SetCharCallback} method.
 * 
 * 

Type

* *

 * void (*{@link #invoke}) (
 *     GLFWwindow *window,
 *     unsigned int codepoint
 * )
* * @since version 2.4 */ @FunctionalInterface @NativeType("GLFWcharfun") public interface GLFWCharCallbackI extends CallbackI { FFICIF CIF = apiCreateCIF( FFI_DEFAULT_ABI, ffi_type_void, ffi_type_pointer, ffi_type_uint32 ); @Override default FFICIF getCallInterface() { return CIF; } @Override default void callback(long ret, long args) { invoke( memGetAddress(memGetAddress(args)), memGetInt(memGetAddress(args + POINTER_SIZE)) ); } /** * Will be called when a Unicode character is input. * * @param window the window that received the event * @param codepoint the Unicode code point of the character */ void invoke(@NativeType("GLFWwindow *") long window, @NativeType("unsigned int") int codepoint); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy