org.lwjgl.opencl.KHRPCIBusInfo 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 khr_pci_bus_info extension.
*
* This extension adds a new query to obtain PCI bus information about an OpenCL device.
*
* Not all OpenCL devices have PCI bus information, either due to the device not being connected to the system through a PCI interface or due to platform
* specific restrictions and policies. Thus this extension is only expected to be supported by OpenCL devices which can provide the information.
*
* As a consequence, applications should always check for the presence of the extension string for each individual OpenCL device for which they intend to
* issue the new query for and should not have any assumptions about the availability of the extension on any given platform.
*/
public final class KHRPCIBusInfo {
/** Accepted value for the {@code param_name} parameter to {@link CL10#clGetDeviceInfo GetDeviceInfo}. */
public static final int CL_DEVICE_PCI_BUS_INFO_KHR = 0x410F;
private KHRPCIBusInfo() {}
}