Search
lxdream.org :: lxdream/src/drivers/video_x11.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/video_x11.c
changeset 442:c0dcf22c8e08
prev439:f0c7928c5914
next478:57f73576c974
author nkeynes
date Tue Oct 16 12:27:28 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Unbind the framebuffer after initialization
view annotate diff log raw
     1 /**
     2  * $Id: video_x11.c,v 1.18 2007-10-13 04:00:23 nkeynes Exp $
     3  *
     4  * Shared functions for all X11-based display drivers.
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #include <X11/Xlib.h>
    20 #include <GL/glx.h>
    21 #include "dream.h"
    22 #include "drivers/video_x11.h"
    23 #include "drivers/gl_common.h"
    25 extern uint32_t video_width, video_height;
    27 /**
    28  * General X11 parameters. The front-end driver is expected to set this up
    29  * by calling video_glx_init after initializing itself.
    30  */
    31 static Display *video_x11_display = NULL;
    32 static Screen *video_x11_screen = NULL;
    33 static Window video_x11_window = 0;
    34 static gboolean glsl_loaded = FALSE;
    36 /**
    37  * GLX parameters.
    38  */
    39 static GLXContext glx_context;
    40 static Window glx_window;
    41 static XSetWindowAttributes win_attrs;
    43 gboolean video_glx_create_window( int width, int height );
    45 gboolean video_glx_init( Display *display, Screen *screen, Window window,
    46 			 int width, int height, display_driver_t driver )
    47 {
    48     video_x11_display = display;
    49     video_x11_screen = screen;
    50     glx_window = video_x11_window = window;
    52     if( !video_glx_init_context(glx_window) ) {
    53 	return FALSE;
    54     }
    56     if( gl_fbo_is_supported() ) {
    57 	gl_fbo_init(driver);
    59 #ifdef USE_GLSL
    60 	if( glsl_is_supported() ) {
    61 	    glsl_loaded = glsl_load_shaders( glsl_vertex_shader_src, glsl_fragment_shader_src );
    62 	    if( !glsl_loaded ) {
    63 	        WARN( "Shaders failed to load" );
    64 	    }
    65 	} else {
    66 	    WARN( "Shaders not supported" );
    67 	}
    68 #endif
    69 	return TRUE;
    70     } else {
    71 	/* Pbuffers? */
    72 	ERROR( "Framebuffer objects not supported (required in this version)" );
    73 	video_glx_shutdown();
    74 	return FALSE;
    75     }
    76 }
    78 /**
    79  * Create a new window with a custom visual - not used at the moment,
    80  * but retained for future reference.
    81  */
    82 gboolean video_x11_create_window( int width, int height )
    83 {
    84     int visual_attrs[] = { GLX_RGBA, GLX_RED_SIZE, 4, 
    85 			   GLX_GREEN_SIZE, 4, 
    86 			   GLX_BLUE_SIZE, 4,
    87 			   GLX_ALPHA_SIZE, 4,
    88 			   GLX_DEPTH_SIZE, 24,
    89 			   GLX_DOUBLEBUFFER, 
    90 			   None };
    91     int screen = XScreenNumberOfScreen(video_x11_screen);
    92     XVisualInfo *visual;
    93     /* Find ourselves a nice visual */
    94     visual = glXChooseVisual( video_x11_display, 
    95 			      screen,
    96 			      visual_attrs );
    98     /* Create a child window with the visual in question */
    99     win_attrs.event_mask = 0;
   100     win_attrs.colormap = XCreateColormap( video_x11_display, 
   101 					  RootWindowOfScreen(video_x11_screen),
   102 					  visual->visual, AllocNone );
   103     glx_window = XCreateWindow( video_x11_display, video_x11_window, 
   104 				0, 0, width, height, 0, visual->depth, 
   105 				InputOutput, visual->visual, 
   106 				CWColormap | CWEventMask, 
   107 				&win_attrs );
   108     if( glx_window == None ) {
   109 	/* Hrm. Aww, no window? */
   110 	ERROR( "Unable to create GLX window" );
   111 	if( win_attrs.colormap ) 
   112 	    XFreeColormap( video_x11_display, win_attrs.colormap );
   113 	XFree(visual);
   114 	return FALSE;
   115     }
   116     XMapRaised( video_x11_display, glx_window );
   118     XFree(visual);
   119     return TRUE;
   120 }
   122 gboolean video_glx_init_context( Window window )
   123 {
   124     XWindowAttributes attr;
   125     XVisualInfo *visual;
   126     XVisualInfo query;
   127     int query_items = 1;
   129     XGetWindowAttributes(video_x11_display, window, &attr);
   131     query.visualid = XVisualIDFromVisual(attr.visual);
   132     visual = XGetVisualInfo(video_x11_display, VisualIDMask, &query, &query_items );
   133     if( visual == NULL ) {
   134 	ERROR( "Unable to obtain a compatible visual" );
   135 	return FALSE;
   136     }
   138     int major, minor;
   139     if( glXQueryVersion( video_x11_display, &major, &minor ) == False ) {
   140 	ERROR( "X Display lacks the GLX nature" );
   141 	XFree(visual);
   142 	return FALSE;
   143     }
   144     if( major < 1 || minor < 2 ) {
   145 	ERROR( "X display supports GLX %d.%d, but we need at least 1.2", major, minor );
   146 	XFree(visual);
   147 	return FALSE;
   148     }
   150     /* And a matching gl context */
   151     glx_context = glXCreateContext( video_x11_display, visual, None, True );
   152     if( glx_context == NULL ) {
   153 	ERROR( "Unable to obtain a GLX Context. Possibly your system is broken in some small, undefineable way" );
   154 	XFree(visual);
   155 	return FALSE;
   156     }
   158     if( glXMakeCurrent( video_x11_display, window, glx_context ) == False ) {
   159 	ERROR( "Unable to prepare GLX context for drawing" );
   160 	glXDestroyContext( video_x11_display, glx_context );
   161 	XFree(visual);
   162 	return FALSE;
   163     }
   164     XFree(visual);
   165     return TRUE;
   166 }
   169 void video_glx_shutdown()
   170 {
   171     if( glsl_loaded ) {
   172 	glsl_unload_shaders();
   173     }
   174     if( glx_window != None ) {
   175 	XDestroyWindow( video_x11_display, glx_window );
   176 	XFreeColormap( video_x11_display, win_attrs.colormap );
   177 	glx_window = None;
   178     }
   179     if( glx_context != NULL ) {
   180 	glXDestroyContext( video_x11_display, glx_context );
   181 	glx_context = NULL;
   182     }
   183 }
   186 int video_glx_load_font( const gchar *font_name )
   187 {
   188     int lists;
   189     XFontStruct *font = XLoadQueryFont(video_x11_display, font_name );
   190     if (font == NULL)
   191 	return -1;
   193     lists = glGenLists(96);
   194     glXUseXFont(font->fid, 32, 96, lists);
   195     XFreeFont(video_x11_display, font);
   196     return lists;
   197 }
   200 void video_glx_swap_buffers( void )
   201 {
   202     glXSwapBuffers( video_x11_display, glx_window );
   203 }
.