org.lwjgl.opencl.IMGMemProperties 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.
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 img_mem_properties extension.
*
* This extension provides additional properties that can be passed to {@link CL30#clCreateBufferWithProperties CreateBufferWithProperties}.
*
* Requires {@link CL30 CL30}.
*/
public final class IMGMemProperties {
/** Accepted propertie(s) for the {@code properties} parameter to {@link CL30#clCreateBufferWithProperties CreateBufferWithProperties}. */
public static final int CL_MEM_ALLOC_FLAGS_IMG = 0x40D7;
/** Accepted {@code values} for {@code cl_mem_alloc_flags_img}. */
public static final int CL_MEM_ALLOC_RELAX_REQUIREMENTS_IMG = 1 << 0;
private IMGMemProperties() {}
}