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

org.lwjgl.glfw.GLFWWindowIconifyCallbackI 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 static org.lwjgl.system.dyncall.DynCallback.*;

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

Type

* *

 * void (*) (
 *     GLFWwindow *window,
 *     int iconified
 * )
* * @since version 3.0 */ @FunctionalInterface @NativeType("GLFWwindowiconifyfun") public interface GLFWWindowIconifyCallbackI extends CallbackI.V { String SIGNATURE = "(pi)v"; @Override default String getSignature() { return SIGNATURE; } @Override default void callback(long args) { invoke( dcbArgPointer(args), dcbArgInt(args) != 0 ); } /** * Will be called when the specified window is iconified or restored. * * @param window the window that was iconified or restored. * @param iconified {@link GLFW#GLFW_TRUE TRUE} if the window was iconified, or {@link GLFW#GLFW_FALSE FALSE} if it was restored */ void invoke(@NativeType("GLFWwindow *") long window, @NativeType("int") boolean iconified); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy