Properly acquire a 32-bit ARGB visual when GL screen saver is requested

pull/2/head
Timothy Pearson 11 years ago
parent 74b1fc6576
commit 5908f01581

@ -820,6 +820,7 @@ void LockProcess::createSaverWindow()
{
Visual* visual = CopyFromParent;
XSetWindowAttributes attrs;
XVisualInfo* info = NULL;
int flags = trinity_desktop_lock_use_system_modal_dialogs?0:CWOverrideRedirect;
#ifdef HAVE_GLXCHOOSEVISUAL
if( mOpenGLVisual )
@ -845,23 +846,41 @@ void LockProcess::createSaverWindow()
#undef G
#undef B
};
for( unsigned int i = 0;
i < sizeof( attribs ) / sizeof( attribs[ 0 ] );
++i )
{
if( XVisualInfo* info = glXChooseVisual( x11Display(), x11Screen(), attribs[ i ] ))
{
visual = info->visual;
static Colormap colormap = 0;
if( colormap != 0 )
XFreeColormap( x11Display(), colormap );
colormap = XCreateColormap( x11Display(), RootWindow( x11Display(), x11Screen()), visual, AllocNone );
attrs.colormap = colormap;
flags |= CWColormap;
XFree( info );
for( unsigned int i = 0; i < sizeof( attribs ) / sizeof( attribs[ 0 ] ); ++i ) {
int n_glxfb_configs;
GLXFBConfig *fbc = glXChooseFBConfig( x11Display(), x11Screen(), attribs[ i ], &n_glxfb_configs);
if (!fbc) {
n_glxfb_configs = 0;
}
for( int j = 0; j < n_glxfb_configs; j++ ) {
info = glXGetVisualFromFBConfig(x11Display(), fbc[j]);
if( info ) {
if (argb_visual) {
if (info->depth < 32) {
XFree( info );
info = NULL;
continue;
}
}
visual = info->visual;
static Colormap colormap = 0;
if( colormap != 0 ) {
XFreeColormap( x11Display(), colormap );
}
colormap = XCreateColormap( x11Display(), RootWindow( x11Display(), x11Screen()), visual, AllocNone );
attrs.colormap = colormap;
flags |= CWColormap;
break;
}
}
if (flags & CWColormap) {
break;
}
}
if ( !info )
{
printf("[WARNING] Unable to locate matching X11 GLX Visual; this OpenGL application may not function correctly!\n");
}
}
#endif
@ -869,22 +888,38 @@ void LockProcess::createSaverWindow()
hide();
if (argb_visual) {
// The GL visual selection can return a visual with invalid depth
// Check for this and use a fallback visual if needed
if (info && (info->depth < 32)) {
printf("[WARNING] Unable to locate matching X11 GLX Visual; this OpenGL application may not function correctly!\n");
XFree( info );
info = NULL;
flags &= ~CWColormap;
}
attrs.background_pixel = 0;
attrs.border_pixel = 0;
flags |= CWBackPixel;
flags |= CWBorderPixel;
if (!(flags & CWColormap)) {
XVisualInfo vinfo;
if (!XMatchVisualInfo( x11Display(), x11Screen(), 32, TrueColor, &vinfo )) {
printf("[ERROR] Unable to locate matching X11 Visual; this application will not function correctly!\n");
if (!info) {
info = new XVisualInfo;
if (!XMatchVisualInfo( x11Display(), x11Screen(), 32, TrueColor, info )) {
printf("[ERROR] Unable to locate matching X11 Visual; this application will not function correctly!\n");
free(info);
info = NULL;
}
}
else {
visual = vinfo.visual;
if (info) {
visual = info->visual;
attrs.colormap = XCreateColormap( x11Display(), RootWindow( x11Display(), x11Screen()), visual, AllocNone );
flags |= CWColormap;
}
}
}
if (info) {
XFree( info );
}
Window w = XCreateWindow( x11Display(), RootWindow( x11Display(), x11Screen()), x(), y(), width(), height(), 0, x11Depth(), InputOutput, visual, flags, &attrs );
create( w );

Loading…
Cancel
Save