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

org.lwjgl.opencl.KHREGLImage 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 java.nio.*;

import org.lwjgl.*;

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

/**
 * Native bindings to the khr_egl_image extension.
 * 
 * 

This extension provides a mechanism for creating derived resources, such as OpenCL image objects, from {@code EGLImages}.

*/ public class KHREGLImage { /** Error Codes */ public static final int CL_EGL_RESOURCE_NOT_ACQUIRED_KHR = -1092, CL_INVALID_EGL_OBJECT_KHR = -1093; /** Command types. */ public static final int CL_COMMAND_ACQUIRE_EGL_OBJECTS_KHR = 0x202D, CL_COMMAND_RELEASE_EGL_OBJECTS_KHR = 0x202E; protected KHREGLImage() { throw new UnsupportedOperationException(); } static boolean isAvailable(CLCapabilities caps) { return checkFunctions( caps.clCreateFromEGLImageKHR, caps.clEnqueueAcquireEGLObjectsKHR, caps.clEnqueueReleaseEGLObjectsKHR ); } // --- [ clCreateFromEGLImageKHR ] --- /** Unsafe version of: {@link #clCreateFromEGLImageKHR CreateFromEGLImageKHR} */ public static long nclCreateFromEGLImageKHR(long context, long display, long image, long flags, long properties, long errcode_ret) { long __functionAddress = CL.getICD().clCreateFromEGLImageKHR; if ( CHECKS ) { checkFunctionAddress(__functionAddress); checkPointer(context); checkPointer(display); checkPointer(image); } return callPPPJPPP(__functionAddress, context, display, image, flags, properties, errcode_ret); } /** * Creates an {@code EGLImage} target of type {@code cl_mem} from the {@code EGLImage} source provided as {@code image}. * * @param context * @param display an {@code EGLDisplay} * @param image an {@code EGLImageKHR} * @param flags a bit-field that is used to specify usage information about the memory object being created * @param properties a list of property names and their corresponding values * @param errcode_ret will return an appropriate error code. If {@code errcode_ret} is {@code NULL}, no error code is returned. */ public static long clCreateFromEGLImageKHR(long context, long display, long image, long flags, PointerBuffer properties, IntBuffer errcode_ret) { if ( CHECKS ) { checkNTSafe(properties); checkBufferSafe(errcode_ret, 1); } return nclCreateFromEGLImageKHR(context, display, image, flags, memAddressSafe(properties), memAddressSafe(errcode_ret)); } // --- [ clEnqueueAcquireEGLObjectsKHR ] --- /** * Unsafe version of: {@link #clEnqueueAcquireEGLObjectsKHR EnqueueAcquireEGLObjectsKHR} * * @param num_objects the number of memory objects to be acquired in {@code mem_objects} * @param num_events_in_wait_list the number of events in {@code event_wait_list} */ public static int nclEnqueueAcquireEGLObjectsKHR(long command_queue, int num_objects, long mem_objects, int num_events_in_wait_list, long event_wait_list, long event) { long __functionAddress = CL.getICD().clEnqueueAcquireEGLObjectsKHR; if ( CHECKS ) { checkFunctionAddress(__functionAddress); checkPointer(command_queue); } return callPPPPI(__functionAddress, command_queue, num_objects, mem_objects, num_events_in_wait_list, event_wait_list, event); } /** * Acquires OpenCL memory objects that have been created from EGL resources. The EGL objects are acquired by the OpenCL context associated with * {@code command_queue} and can therefore be used by all command-queues associated with the OpenCL context. * * @param command_queue a valid command-queue * @param mem_objects a pointer to a list of OpenCL memory objects that were created from EGL resources, within the context associated with {@code command_queue} * @param event_wait_list a list of events that need to complete before this particular command can be executed. If {@code event_wait_list} is {@code NULL}, then this particular command * does not wait on any event to complete. The events specified in {@code event_wait_list} act as synchronization points. The context associated with events in * {@code event_wait_list} and {@code command_queue} must be the same. * @param event Returns an event object that identifies this particular command and can be used to query or queue a wait for this particular command to complete. * {@code event} can be {@code NULL} in which case it will not be possible for the application to query the status of this command or queue a wait for this command to * complete. If the {@code event_wait_list} and the {@code event} arguments are not {@code NULL}, the event argument should not refer to an element of the * {@code event_wait_list} array. */ public static int clEnqueueAcquireEGLObjectsKHR(long command_queue, PointerBuffer mem_objects, PointerBuffer event_wait_list, PointerBuffer event) { if ( CHECKS ) checkBufferSafe(event, 1); return nclEnqueueAcquireEGLObjectsKHR(command_queue, mem_objects.remaining(), memAddress(mem_objects), remainingSafe(event_wait_list), memAddressSafe(event_wait_list), memAddressSafe(event)); } // --- [ clEnqueueReleaseEGLObjectsKHR ] --- /** * Unsafe version of: {@link #clEnqueueReleaseEGLObjectsKHR EnqueueReleaseEGLObjectsKHR} * * @param num_events_in_wait_list the number of events in {@code event_wait_list} */ public static int nclEnqueueReleaseEGLObjectsKHR(long command_queue, int num_objects, long mem_objects, int num_events_in_wait_list, long event_wait_list, long event) { long __functionAddress = CL.getICD().clEnqueueReleaseEGLObjectsKHR; if ( CHECKS ) { checkFunctionAddress(__functionAddress); checkPointer(command_queue); } return callPPPPI(__functionAddress, command_queue, num_objects, mem_objects, num_events_in_wait_list, event_wait_list, event); } /** * Releases OpenCL memory objects that have been created from EGL resources. The EGL objects are released by the OpenCL context associated with * {@code command_queue}. * * @param command_queue a valid command-queue * @param num_objects the number of memory objects to be released in {@code mem_objects} * @param mem_objects a pointer to a list of OpenCL memory objects that were created from EGL resources, within the context associated with {@code command_queue} * @param event_wait_list a list of events that need to complete before this particular command can be executed. If {@code event_wait_list} is {@code NULL}, then this particular command * does not wait on any event to complete. The events specified in {@code event_wait_list} act as synchronization points. The context associated with events in * {@code event_wait_list} and {@code command_queue} must be the same. * @param event Returns an event object that identifies this particular command and can be used to query or queue a wait for this particular command to complete. * {@code event} can be {@code NULL} in which case it will not be possible for the application to query the status of this command or queue a wait for this command to * complete. If the {@code event_wait_list} and the {@code event} arguments are not {@code NULL}, the event argument should not refer to an element of the * {@code event_wait_list} array. */ public static int clEnqueueReleaseEGLObjectsKHR(long command_queue, int num_objects, PointerBuffer mem_objects, PointerBuffer event_wait_list, PointerBuffer event) { if ( CHECKS ) checkBufferSafe(event, 1); return nclEnqueueReleaseEGLObjectsKHR(command_queue, num_objects, memAddress(mem_objects), remainingSafe(event_wait_list), memAddressSafe(event_wait_list), memAddressSafe(event)); } /** Array version of: {@link #clCreateFromEGLImageKHR CreateFromEGLImageKHR} */ public static long clCreateFromEGLImageKHR(long context, long display, long image, long flags, PointerBuffer properties, int[] errcode_ret) { long __functionAddress = CL.getICD().clCreateFromEGLImageKHR; if ( CHECKS ) { checkFunctionAddress(__functionAddress); checkPointer(context); checkPointer(display); checkPointer(image); checkNTSafe(properties); checkBufferSafe(errcode_ret, 1); } return callPPPJPPP(__functionAddress, context, display, image, flags, memAddressSafe(properties), errcode_ret); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy