From f9daae386b7621abe6fd89632bb5efa2c570a8be Mon Sep 17 00:00:00 2001 From: kallaballa Date: Sat, 6 May 2023 14:44:26 +0200 Subject: [PATCH] fixed refactoring errors --- modules/v4d/include/opencv2/v4d/v4d.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/v4d/include/opencv2/v4d/v4d.hpp b/modules/v4d/include/opencv2/v4d/v4d.hpp index fe402f8c0..5d3e5accc 100644 --- a/modules/v4d/include/opencv2/v4d/v4d.hpp +++ b/modules/v4d/include/opencv2/v4d/v4d.hpp @@ -398,6 +398,7 @@ public: * @param graphical if true renders the fps on screen */ CV_EXPORTS void showFps(bool print = true, bool graphical = true); + FrameBufferContext& fbCtx(); private: V4D(const cv::Size& size, const cv::Size& fbsize, const string& title, bool offscreen, bool debug, int major, int minor, bool compat, int samples); @@ -412,7 +413,6 @@ private: bool keyboard_event(int key, int scancode, int action, int modifiers); void setMousePosition(int x, int y); - FrameBufferContext& fbCtx(); CLVAContext& clvaCtx(); NanoVGContext& nvgCtx(); NanoguiContext& nguiCtx();