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

org.lwjgl.cuda.CUoccupancyB2DSizeI Maven / Gradle / Ivy

/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.cuda;

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

/**
 * 

Type

* *

 * size_t (*{@link #invoke}) (
 *     int blockSize
 * )
*/ @FunctionalInterface @NativeType("size_t (*) (int)") public interface CUoccupancyB2DSizeI extends CallbackI { FFICIF CIF = apiCreateCIF( apiStdcall(), ffi_type_pointer, ffi_type_sint32 ); @Override default FFICIF getCallInterface() { return CIF; } @Override default void callback(long ret, long args) { long __result = invoke( memGetInt(memGetAddress(args)) ); apiClosureRetP(ret, __result); } /** @return the dynamic shared memory needed by a block */ @NativeType("size_t") long invoke(int blockSize); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy