Search
lxdream.org :: lxdream/src/drivers/video_nsgl.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/video_nsgl.h
changeset 681:1755a126b109
prev663:553bb7d6befa
next736:a02d1475ccfd
author nkeynes
date Sun Jun 01 00:50:00 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Fix minor typo + bug for GTK version
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Cocoa (NSOpenGL) video driver
     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_nsgl_H
    20 #define video_nsgl_H
    22 #include <AppKit/NSView.h>
    23 #include "display.h"
    25 /**
    26  * Initialize the display driver by setting the appropriate methods
    27  * for NSGL support
    28  */
    29 gboolean video_nsgl_init_driver( NSView *view, display_driver_t driver );
    31 /**
    32  * Shutdown GLX support and release all resources.
    33  */
    34 void video_nsgl_shutdown();
    36 /**
    37  * Standard front/back buffer swap
    38  */
    39 void video_nsgl_swap_buffers();
    41 #endif /* !video_nsgl_H */
.