Search
lxdream.org :: lxdream/src/drivers/video_glx.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/video_glx.h
changeset 736:a02d1475ccfd
prev561:533f6b478071
author nkeynes
date Fri Mar 02 23:49:10 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Android WIP:
* Rename gui_jni.c to gui_android.c - now quite android specific.
* Implement generic EGL driver with very minimal Java wrapper
* Run emulation in separate thread, and implement simple queue for
inter-thread communication.
* Add menu/action-bar items for start + reset
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Parent for all glx-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 #ifndef lxdream_video_glx_H
    20 #define lxdream_video_glx_H 1
    22 #include "X11/Xlib.h"
    23 #include "display.h"
    25 #ifdef __cplusplus
    26 extern "C" {
    27 #endif
    29 /**
    30  * Initialize GLX support. Detect capabilities, visuals, etc. 
    31  * Must be called before any other GLX functions
    32  */
    33 gboolean video_glx_init( Display *display, int screen );
    35 /**
    36  * Return the prefered visual to be used for the GL window.
    37  * (Not using this for the render window may cause init context
    38  * to fail).
    39  */
    40 XVisualInfo *video_glx_get_visual();
    42 /**
    43  * Initialize the GLX context and bind to the specified window.
    44  * (which should have been created with the visual returned above).
    45  */
    46 gboolean video_glx_init_context( Display *display, Window window );
    48 /**
    49  * Initialize the display driver by setting the appropriate methods
    50  * for GLX support
    51  */
    52 gboolean video_glx_init_driver( display_driver_t driver );
    54 /**
    55  * Shutdown GLX support and release all resources.
    56  */
    57 void video_glx_shutdown();
    59 #ifdef __cplusplus
    60 }
    61 #endif
    63 #endif
.