Unverified Commit 6fb780ea authored by Alexander Alekhin's avatar Alexander Alekhin Committed by GitHub

Merge pull request #13088 from alalek:gapi_fix_arm_build

parents 11eafca3 386733ae
...@@ -125,7 +125,7 @@ struct tracked_cv_umat{ ...@@ -125,7 +125,7 @@ struct tracked_cv_umat{
struct scalar_wrapper_gpu struct scalar_wrapper_gpu
{ {
//FIXME reuse CPU (OpenCV) plugin code //FIXME reuse CPU (OpenCV) plugin code
scalar_wrapper_gpu(cv::gapi::own::Scalar& s) : m_s{cv::gapi::own::to_ocv(s)}, m_org_s{s} {}; scalar_wrapper_gpu(cv::gapi::own::Scalar& s) : m_s{cv::gapi::own::to_ocv(s)}, m_org_s(s) {};
operator cv::Scalar& () { return m_s; } operator cv::Scalar& () { return m_s; }
void writeBack() const { m_org_s = to_own(m_s); } void writeBack() const { m_org_s = to_own(m_s); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment