org.lwjgl.opencl.INTELMemChannelProperty 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 intel_mem_channel_property extension.
*
* On some accelerators, manual partitioning of buffers across different regions of memory may result in higher performance by spreading high-demand
* memory across different interfaces or ports of a memory.
*
* This extension allows programmers to request that a buffer allocation be implemented in a particular region of memory.
*
* Requires {@link INTELCreateBufferWithProperties intel_create_buffer_with_properties}.
*/
public final class INTELMemChannelProperty {
/** Accepted property for the {@code properties} parameter to {@link INTELCreateBufferWithProperties#clCreateBufferWithPropertiesINTEL CreateBufferWithPropertiesINTEL} to specify the requested channel for the buffer. */
public static final int CL_MEM_CHANNEL_INTEL = 0x4213;
private INTELMemChannelProperty() {}
}