org.lwjgl.opencl.CLReportLiveObjectsAlteraCallbackI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opencl Show documentation
Show all versions of lwjgl-opencl Show documentation
An open, royalty-free standard for cross-platform, parallel programming of diverse processors found in personal computers, servers, mobile devices and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opencl;
import org.lwjgl.system.*;
import static org.lwjgl.system.dyncall.DynCallback.*;
/**
* Instances of this interface may be passed to the {@link ALTERALiveObjectTracking#clReportLiveObjectsAltera ReportLiveObjectsAltera} method.
*
* Type
*
*
* void (*) (
* void *user_data,
* void *obj_ptr,
* const char *type_name,
* cl_uint refcount
* )
*/
@FunctionalInterface
@NativeType("void (*) (void *, void *, const char *, cl_uint)")
public interface CLReportLiveObjectsAlteraCallbackI extends CallbackI.V {
String SIGNATURE = Callback.__stdcall("(pppi)v");
@Override
default String getSignature() { return SIGNATURE; }
@Override
default void callback(long args) {
invoke(
dcbArgPointer(args),
dcbArgPointer(args),
dcbArgPointer(args),
dcbArgInt(args)
);
}
/**
* Reports a live OpenCL API object.
*
* @param user_data the {@code user_data} argument specified to {@link ALTERALiveObjectTracking#clReportLiveObjectsAltera ReportLiveObjectsAltera}
* @param obj_ptr a pointer to the live object
* @param type_name a C string corresponding to the OpenCL API object type. For example, a leaked {@code cl_mem} object will have "cl_mem" as its type string.
* @param refcount an instantaneous reference count for the object. Consider it to be immediately stale.
*/
void invoke(@NativeType("void *") long user_data, @NativeType("void *") long obj_ptr, @NativeType("const char *") long type_name, @NativeType("cl_uint") int refcount);
}