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 352:f0df7a6d4703
prev144:7f0714e89aaa
next370:3131ba1440fc
author nkeynes
date Sun Feb 11 10:09:32 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Bug 27: Implement opengl framebuffer objects
Rewrite much of the final video output stage. Now uses generic "render
buffers", implemented on GL using framebuffer objects + textures.
view annotate diff log raw
     1 /**
     2  * $Id: video_x11.h,v 1.4 2007-02-11 10:09:32 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 );
    28 #endif
.