Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
c9670699
Commit
c9670699
authored
Feb 03, 2014
by
Roman Donchenko
Committed by
OpenCV Buildbot
Feb 03, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2254 from ilya-lavrenov:opengl
parents
75dde49b
ec3eb141
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
opengl.cpp
modules/core/src/opengl.cpp
+1
-8
No files found.
modules/core/src/opengl.cpp
View file @
c9670699
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment