diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-25 22:13:32 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-25 22:15:01 +0100 |
commit | b5d4d946e0355d2c2496d61625a9abb06dab6929 (patch) | |
tree | 55bbdcd6bcb64ba77f555d288ee3fdfb23d00c62 /offapi | |
parent | ad8875e2a007d918636e1e1a2f6214b0fdf0da04 (diff) |
add methods to enable and disable automatic device selection
Change-Id: I7136ad48ad3f20c60b77838225ce6c927514acff
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl b/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl index 26ab32885ac7..994867e6a069 100644 --- a/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl +++ b/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl @@ -25,6 +25,17 @@ interface XOpenCLSelection : com::sun::star::uno::XInterface void enableOpenCL( [in] boolean enable ); /** + * Enables automatic OpenCL Device Selection + * @param force forces a new evaluation of the best device + */ + void enableAutomaticDeviceSelection( [in] boolean force ); + + /** + * Disbales automatic OpenCL Device Selection + */ + void disableAutomaticDeviceSelection(); + + /** * Set the OpenCL device with the platform ID and device ID * Uses the ID of the platform and the device */ |