Search
lxdream.org :: lxdream/src/drivers/video_x11.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/video_x11.h
changeset 370:3131ba1440fc
prev352:f0df7a6d4703
author nkeynes
date Wed Oct 31 09:05:44 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add convenience MMIO_ADDR macro
view annotate diff log raw
     1 /**
     2  * $Id: video_x11.h,v 1.5 2007-09-08 04:05:35 nkeynes Exp $
     3  *
     4  * Parent for all X11 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 #ifndef video_x11_driver_H
    20 #define video_x11_driver_H
    22 #include "X11/Xlib.h"
    23 #include "display.h"
    25 gboolean video_glx_init( Display *display, Screen *screen, Window window,
    26 			 int width, int height, display_driver_t driver );
    27 void video_glx_shutdown();
    28 #endif
.