mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Fix typo device -> devices (#728)
This commit is contained in:
committed by
GitHub
parent
fea3e54e5a
commit
349da6e6fb
@@ -176,7 +176,7 @@ public:
|
||||
|
||||
// Check all devices, search for one that supports cl_khr_gl_sharing
|
||||
for (int i=0; i<(int)num_of_devices; i++) {
|
||||
if (!is_extension_available(device[i], "cl_khr_gl_sharing")) {
|
||||
if (!is_extension_available(devices[i], "cl_khr_gl_sharing")) {
|
||||
log_info("Device %d of %d does not support required extension cl_khr_gl_sharing.\n", i+1, num_of_devices);
|
||||
} else {
|
||||
log_info("Device %d of %d supports required extension cl_khr_gl_sharing.\n", i+1, num_of_devices);
|
||||
|
||||
Reference in New Issue
Block a user