From cdbea6f0a099fe900844a31e9dc66bf7a8bda95e Mon Sep 17 00:00:00 2001 From: Anastasiya Pronina Date: Mon, 21 Dec 2020 14:06:47 +0300 Subject: [PATCH] GFrame as internal node in GExecutor --- modules/gapi/src/executor/gexecutor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/gapi/src/executor/gexecutor.cpp b/modules/gapi/src/executor/gexecutor.cpp index 2702e47547..6f313197ba 100644 --- a/modules/gapi/src/executor/gexecutor.cpp +++ b/modules/gapi/src/executor/gexecutor.cpp @@ -242,7 +242,10 @@ void cv::gimpl::GExecutor::initResource(const ade::NodeHandle & nh, const ade::N case GShape::GOPAQUE: // Constructed on Reset, do nothing here break; - + case GShape::GFRAME: { + // Should be defined by backend, do nothing here + break; + } default: GAPI_Assert(false); }