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

org.lwjgl.opencl.CLReportLiveObjectsAlteraCallback Maven / Gradle / Ivy

Go to download

An open, royalty-free standard for cross-platform, parallel programming of diverse processors found in personal computers, servers, mobile devices and embedded platforms.

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

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

/** Instances of this class may be passed to the {@link ALTERALiveObjectTracking#clReportLiveObjectsAltera ReportLiveObjectsAltera} method. */
public abstract class CLReportLiveObjectsAlteraCallback extends Callback implements CLReportLiveObjectsAlteraCallbackI {

	/** Creates a {@code CLReportLiveObjectsAlteraCallback} instance from the specified function pointer. */
	public static CLReportLiveObjectsAlteraCallback create(long functionPointer) {
		if ( functionPointer == NULL )
			return null;

		CLReportLiveObjectsAlteraCallbackI instance = Callback.get(functionPointer);
		return instance instanceof CLReportLiveObjectsAlteraCallback
			? (CLReportLiveObjectsAlteraCallback)instance
			: new Container(functionPointer, instance);
	}

	/** Creates a {@code CLReportLiveObjectsAlteraCallback} instance that delegates to the specified {@code CLReportLiveObjectsAlteraCallbackI} instance. */
	public static CLReportLiveObjectsAlteraCallback create(CLReportLiveObjectsAlteraCallbackI instance) {
		return instance instanceof CLReportLiveObjectsAlteraCallback
			? (CLReportLiveObjectsAlteraCallback)instance
			: new Container(instance.address(), instance);
	}

	protected CLReportLiveObjectsAlteraCallback() {
		super(SIGNATURE);
	}

	private CLReportLiveObjectsAlteraCallback(long functionPointer) {
		super(functionPointer);
	}

	private static final class Container extends CLReportLiveObjectsAlteraCallback {

		private final CLReportLiveObjectsAlteraCallbackI delegate;

		Container(long functionPointer, CLReportLiveObjectsAlteraCallbackI delegate) {
			super(functionPointer);
			this.delegate = delegate;
		}

		@Override
		public void invoke(long user_data, long obj_ptr, long type_name, int refcount) {
			delegate.invoke(user_data, obj_ptr, type_name, refcount);
		}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy