diff options
author | Tom Stellard <[email protected]> | 2015-03-20 23:55:58 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2015-03-23 13:22:42 +0000 |
commit | 96f9cc9181403a93208cb44786c485ce44492eda (patch) | |
tree | 6828fad447f1f20d30165ed9305cd70cdcf84abc /src/gallium/state_trackers/clover/api | |
parent | 3d1bba7c9be856ed4e7611ef92796430556a2f6d (diff) |
clover: Add a space at the end of CL_DEVICE_OPENCL_C_VERSION
This is required by the spec.
Reviewed-by: Jan Vesely <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/clover/api')
-rw-r--r-- | src/gallium/state_trackers/clover/api/device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/clover/api/device.cpp b/src/gallium/state_trackers/clover/api/device.cpp index 5d1f4ab4c9d..04f293d592a 100644 --- a/src/gallium/state_trackers/clover/api/device.cpp +++ b/src/gallium/state_trackers/clover/api/device.cpp @@ -341,7 +341,7 @@ clGetDeviceInfo(cl_device_id d_dev, cl_device_info param, break; case CL_DEVICE_OPENCL_C_VERSION: - buf.as_string() = "OpenCL C 1.1"; + buf.as_string() = "OpenCL C 1.1 "; break; case CL_DEVICE_PARENT_DEVICE: |