From f77276311d7e6efd7fce2a165ae568e51312c7c3 Mon Sep 17 00:00:00 2001 From: Dale Phurrough Date: Tue, 8 Dec 2020 16:08:53 +0100 Subject: [PATCH] clarify opencl execution context doc - fix opencv/opencv#18888 --- modules/core/include/opencv2/core/ocl.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/core/include/opencv2/core/ocl.hpp b/modules/core/include/opencv2/core/ocl.hpp index 3315832654..bbcf219caf 100644 --- a/modules/core/include/opencv2/core/ocl.hpp +++ b/modules/core/include/opencv2/core/ocl.hpp @@ -743,9 +743,11 @@ public: /** Get associated ocl::Context */ Context& getContext() const; - /** Get associated ocl::Device */ + /** Get the single default associated ocl::Device */ Device& getDevice() const; - /** Get associated ocl::Queue */ + /** Get the single ocl::Queue that is associated with the ocl::Context and + * the single default ocl::Device + */ Queue& getQueue() const; bool useOpenCL() const;