mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Remove most remaining clCreate*WithProperties calls in tests that run on 1.2
Don't touch interop suites or code only run with options not required for conformance. Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
@@ -115,7 +115,7 @@ void create_context_and_queue(cl_device_id device, cl_context *out_context, cl_c
|
||||
throw Exceptions::TestError("clCreateContext failed\n", error);
|
||||
}
|
||||
|
||||
*out_queue = clCreateCommandQueueWithProperties( *out_context, device, 0, &error );
|
||||
*out_queue = clCreateCommandQueue( *out_context, device, 0, &error );
|
||||
if( NULL == *out_queue || error )
|
||||
{
|
||||
throw Exceptions::TestError("clCreateCommandQueue failed\n", error);
|
||||
|
||||
Reference in New Issue
Block a user