From ec3eb14138d6ad62e6a8c2cd761fcd1439ef2431 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Sat, 1 Feb 2014 18:14:10 +0400 Subject: [PATCH] unused function in case of unavailable OpenGL --- modules/core/src/opengl.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/modules/core/src/opengl.cpp b/modules/core/src/opengl.cpp index 7205afff7..e7b2a7627 100644 --- a/modules/core/src/opengl.cpp +++ b/modules/core/src/opengl.cpp @@ -58,16 +58,9 @@ namespace inline void throw_no_ogl() { CV_Error(cv::Error::OpenGlNotSupported, "The library is compiled without OpenGL support"); } #else inline void throw_no_ogl() { CV_Error(cv::Error::OpenGlApiCallError, "OpenGL context doesn't exist"); } - #endif bool checkError(const char* file, const int line, const char* func = 0) { - #ifndef HAVE_OPENGL - (void) file; - (void) line; - (void) func; - return true; - #else GLenum err = gl::GetError(); if (err != gl::NO_ERROR_) @@ -102,8 +95,8 @@ namespace } return true; - #endif } + #endif #define CV_CheckGlError() CV_DbgAssert( (checkError(__FILE__, __LINE__, CV_Func)) ) } // namespace