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

org.lwjgl.nuklear.NkTextWidthCallbackI Maven / Gradle / Ivy

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

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 set to the {@link NkUserFont} struct.
 * 
 * 

Type

* *

 * float (*{@link #invoke}) (
 *     nk_handle handle,
 *     float h,
 *     char const *text,
 *     int len
 * )
*/ @FunctionalInterface @NativeType("nk_text_width_f") public interface NkTextWidthCallbackI extends CallbackI { FFICIF CIF = apiCreateCIF( FFI_DEFAULT_ABI, ffi_type_float, ffi_type_pointer, ffi_type_float, ffi_type_pointer, ffi_type_sint32 ); @Override default FFICIF getCallInterface() { return CIF; } @Override default void callback(long ret, long args) { float __result = invoke( memGetAddress(memGetAddress(args)), memGetFloat(memGetAddress(args + POINTER_SIZE)), memGetAddress(memGetAddress(args + 2 * POINTER_SIZE)), memGetInt(memGetAddress(args + 3 * POINTER_SIZE)) ); apiClosureRet(ret, __result); } float invoke(@NativeType("nk_handle") long handle, float h, @NativeType("char const *") long text, int len); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy