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

org.lwjgl.opencl.APPLEQueryKernelNames 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.

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

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

These selectors may be passed to {@link CL10#clGetProgramInfo GetProgramInfo} to obtain information about the kernel functions in a {@code cl_program}. The {@code cl_program} * must be successfully built with {@link CL10#clBuildProgram BuildProgram} for at least one device to succeed. Otherwise {@link CL10#CL_INVALID_PROGRAM_EXECUTABLE INVALID_PROGRAM_EXECUTABLE} is returned.

*/ public final class APPLEQueryKernelNames { /** Returns a cl_uint for number of kernels in program. */ public static final int CL_PROGRAM_NUM_KERNELS_APPLE = 0x10000004; /** Returns a ';' delimited char[] containing the names of kernels in program. */ public static final int CL_PROGRAM_KERNEL_NAMES_APPLE = 0x10000005; private APPLEQueryKernelNames() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy