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 335:fb890e1814c0
prev327:00d55a462af3
next352:f0df7a6d4703
author nkeynes
date Mon Feb 05 08:51:34 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Mipmapped flag is only valid for twiddled textures
view annotate diff log raw
     1 /**
     2  * $Id: video_x11.c,v 1.11 2007-01-27 12:03:53 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"
    24 /**
    25  * General X11 parameters. The front-end driver is expected to set this up
    26  * by calling video_x11_set_display after initializing itself.
    27  */
    28 Display *video_x11_display = NULL;
    29 Screen *video_x11_screen = NULL;
    30 Window video_x11_window = 0;
    31 extern uint32_t video_width, video_height;
    32 /**
    33  * GLX parameters.
    34  */
    35 GLXContext glx_context;
    36 Window glx_window;
    37 gboolean glx_open = FALSE;
    39 void video_x11_set_display( Display *display, Screen *screen, Window window )
    40 {
    41     video_x11_display = display;
    42     video_x11_screen = screen;
    43     video_x11_window = window;
    44 }
    47 gboolean video_glx_create_window( int x, int y, int width, int height )
    48 {
    49     int major, minor;
    50     const char *glxExts, *glxServer;
    51     int visual_attrs[] = { GLX_RGBA, GLX_RED_SIZE, 4, 
    52 			   GLX_GREEN_SIZE, 4, 
    53 			   GLX_BLUE_SIZE, 4,
    54 			   GLX_ALPHA_SIZE, 4,
    55 			   GLX_DEPTH_SIZE, 24,
    56 			   GLX_DOUBLEBUFFER, 
    57 			   None };
    58     int screen = XScreenNumberOfScreen(video_x11_screen);
    59     XSetWindowAttributes win_attrs;
    60     XVisualInfo *visual;
    62     if( glXQueryVersion( video_x11_display, &major, &minor ) == False ) {
    63 	ERROR( "X Display lacks the GLX nature" );
    64 	return FALSE;
    65     }
    66     if( major < 1 || minor < 2 ) {
    67 	ERROR( "X display supports GLX %d.%d, but we need at least 1.2", major, minor );
    68 	return FALSE;
    69     }
    71     glxExts = glXQueryExtensionsString( video_x11_display, screen );
    72     glxServer = glXQueryServerString( video_x11_display, screen, GLX_VENDOR );
    73     INFO( "GLX version %d.%d, %s. Supported exts: %s", major, minor,
    74 	  glxServer, glxExts );
    76     /* Find ourselves a nice visual */
    77     visual = glXChooseVisual( video_x11_display, 
    78 			      screen,
    79 			      visual_attrs );
    80     if( visual == NULL ) {
    81 	ERROR( "Unable to obtain a compatible visual" );
    82 	return FALSE;
    83     }
    85     /* And a matching gl context */
    86     glx_context = glXCreateContext( video_x11_display, visual, None, True );
    87     if( glx_context == NULL ) {
    88 	ERROR( "Unable to obtain a GLX Context. Possibly your system is broken in some small, undefineable way" );
    89 	return FALSE;
    90     }
    93     /* Ok, all good so far. Unfortunately the visual we need to use will 
    94      * almost certainly be different from the one our frame is using. Which 
    95      * means we have to jump through the following hoops to create a 
    96      * child window with the appropriate settings.
    97      */
    98     win_attrs.event_mask = 0;
    99     win_attrs.colormap = XCreateColormap( video_x11_display, 
   100 					  RootWindowOfScreen(video_x11_screen),
   101 					  visual->visual, AllocNone );
   102     glx_window = XCreateWindow( video_x11_display, video_x11_window, 
   103 				x, y, width, height, 0, visual->depth, 
   104 				InputOutput, visual->visual, 
   105 				CWColormap | CWEventMask, 
   106 				&win_attrs );
   107     if( glx_window == None ) {
   108 	/* Hrm. Aww, no window? */
   109 	ERROR( "Unable to create GLX window" );
   110 	glXDestroyContext( video_x11_display, glx_context );
   111 	if( win_attrs.colormap ) 
   112 	    XFreeColormap( video_x11_display, win_attrs.colormap );
   113 	return FALSE;
   114     }
   115     XMapRaised( video_x11_display, glx_window );
   117     /* And finally set the window to be the active drawing area */
   118     if( glXMakeCurrent( video_x11_display, glx_window, glx_context ) == False ) {
   119 	/* Ok you have _GOT_ to be kidding me */
   120 	ERROR( "Unable to prepare GLX window for drawing" );
   121 	XDestroyWindow( video_x11_display, glx_window );
   122 	XFreeColormap( video_x11_display, win_attrs.colormap );
   123 	glXDestroyContext( video_x11_display, glx_context );
   124 	return FALSE;
   125     }
   127     hasRequiredGLExtensions();
   128     glx_open = TRUE;
   129     return TRUE;
   130 }
   132 int video_glx_load_font( const gchar *font_name )
   133 {
   134     int lists;
   135     XFontStruct *font = XLoadQueryFont(video_x11_display, font_name );
   136     if (font == NULL)
   137 	return -1;
   139     lists = glGenLists(96);
   140     glXUseXFont(font->fid, 32, 96, lists);
   141     XFreeFont(video_x11_display, font);
   142 }
   146 gboolean video_glx_set_render_format( int x, int y, int width, int height )
   147 {
   148     if( glx_open )
   149 	return TRUE;
   150     return video_glx_create_window( x, y, width, height );
   151 }
   153 gboolean video_glx_display_frame( video_buffer_t frame )
   154 {
   155     GLenum type = colour_formats[frame->colour_format].type;
   156     GLenum format = colour_formats[frame->colour_format].format;
   157     int bpp = colour_formats[frame->colour_format].bpp;
   159     glDrawBuffer( GL_FRONT );
   160     glViewport( 0, 0, video_width, video_height );
   161     glMatrixMode(GL_PROJECTION);
   162     glLoadIdentity();
   163     glOrtho( 0, frame->hres, frame->vres, 0, 0, -65535 );
   164     glMatrixMode(GL_MODELVIEW);
   165     glLoadIdentity();
   166     glRasterPos2i( 0, 0 );
   167     glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT );
   168     float scale = 480.0 / frame->vres;
   169     glPixelZoom( 1.0f, -scale );
   170     int rowstride = (frame->rowstride / bpp) - frame->hres;
   171     glPixelStorei( GL_PACK_ROW_LENGTH, rowstride );
   172     glDrawPixels( frame->hres, frame->vres, format, type,
   173 		  frame->data );
   174     glPopClientAttrib();
   175     glFlush();
   176     return TRUE;
   177 }
   179 gboolean video_glx_blank( int width, int height, uint32_t colour )
   180 {
   181     glDrawBuffer( GL_FRONT );
   182     glViewport( 0, 0, width, height );
   183     glMatrixMode( GL_PROJECTION );
   184     glLoadIdentity();
   185     glOrtho( 0, width, height, 0, 0, -65535 );
   186     glMatrixMode(GL_MODELVIEW);
   187     glLoadIdentity();
   188     glColor3b( (colour >> 16) & 0xFF, (colour >> 8) & 0xFF, colour & 0xFF );
   189     glRecti(0,0, width, height );
   190     glFlush();
   191     return TRUE;
   192 }
   194 void video_glx_swap_buffers( void )
   195 {
   196     glXSwapBuffers( video_x11_display, glx_window );
   197 }
   199 void video_glx_create_pixmap( int width, int height )
   200 {
   202 }
.