Module: wine Branch: master Commit: 6b15f4d614fd33ec2c81b377fe6609f2bb7bfa6c URL: https://source.winehq.org/git/wine.git/?a=commit;h=6b15f4d614fd33ec2c81b377f... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Mon Mar 15 23:44:50 2021 -0500 opencl: Move libOpenCL support to a new Unix library. Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/opencl/Makefile.in | 6 +- dlls/opencl/make_opencl | 120 +++++++-- dlls/opencl/opencl.c | 236 ---------------- dlls/opencl/opencl_private.h | 5 + dlls/opencl/{opencl_thunks.c => pe_thunks.c} | 142 ++++++---- dlls/opencl/pe_wrappers.c | 128 +++++++++ dlls/opencl/unix_private.h | 45 ++++ dlls/opencl/unix_thunks.c | 388 +++++++++++++++++++++++++++ dlls/opencl/unix_wrappers.c | 146 ++++++++++ dlls/opencl/unixlib.h | 73 +++++ 10 files changed, 972 insertions(+), 317 deletions(-) Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=6b15f4d614fd33ec2c81b...