mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 06:30:10 +01:00
clover: Optionally return context's devices from clGetProgramInfo()
The spec allows clGetProgramInfo() to return information about either
the devices associated with the program or the devices associated
with the context. If there are no devices associated with the program,
then we return devices associated with the context.
https://bugs.freedesktop.org/show_bug.cgi?id=52171
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
CC: "10.0" <mesa-stable@lists.freedesktop.org>
(cherry picked from commit a84dd2398f)
This commit is contained in:
parent
5af1fb5324
commit
eafb9f6756
1 changed files with 6 additions and 2 deletions
|
|
@ -173,11 +173,15 @@ clGetProgramInfo(cl_program d_prog, cl_program_info param,
|
|||
break;
|
||||
|
||||
case CL_PROGRAM_NUM_DEVICES:
|
||||
buf.as_scalar<cl_uint>() = prog.devices().size();
|
||||
buf.as_scalar<cl_uint>() = prog.devices().size() ?
|
||||
prog.devices().size() :
|
||||
prog.ctx.devs().size();
|
||||
break;
|
||||
|
||||
case CL_PROGRAM_DEVICES:
|
||||
buf.as_vector<cl_device_id>() = descs(prog.devices());
|
||||
buf.as_vector<cl_device_id>() = prog.devices().size() ?
|
||||
descs(prog.devices()) :
|
||||
descs(prog.ctx.devs());
|
||||
break;
|
||||
|
||||
case CL_PROGRAM_SOURCE:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue