Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2007-06-26 19:15:41 +0400
committerKent Mein <mein@cs.umn.edu>2007-06-26 19:15:41 +0400
commit9749bd0379d076bb0b8d3af6c61a8be231c064f4 (patch)
treef8978549bf585c4eaad0a5ff5c9ce1d9aa7e3bfd /intern
parentbf4368a09e44d9533504b2eec019b57de3f58aa1 (diff)
This is for bug #6883 Add usefull error message to GL failure...
https://projects.blender.org/tracker/index.php?func=detail&aid=6883&group_id=9&atid=125 I just cut and paste the printf provided in the bug report. Its usefull info at this point. Kent
Diffstat (limited to 'intern')
-rwxr-xr-xintern/ghost/intern/GHOST_WindowX11.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp
index 056b5756587..db75dc721e5 100755
--- a/intern/ghost/intern/GHOST_WindowX11.cpp
+++ b/intern/ghost/intern/GHOST_WindowX11.cpp
@@ -168,6 +168,7 @@ GHOST_WindowX11(
if (m_visual == NULL) {
// barf : no visual meeting these requirements could be found.
+ printf("%s:%d: X11 glxChooseVisual() failed for OpenGL, verify working openGL system!\n", __FILE__, __LINE__);
return;
}