Search
lxdream.org :: lxdream/src/gdrom/cdi.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gdrom/cdi.h
changeset 31:495e480360d7
prev1:eea311cfd33e
next561:533f6b478071
author nkeynes
date Mon Jan 29 11:24:44 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Get render size from the tile segment array
Set near clip to just 0 rather than scanning the scene
Fixup modulate RGB to force fragment alpha to 1.0
Add some debugging fprintfs
view annotate diff log raw
     1 /**
     2  * $Id: cdi.h,v 1.2 2005-12-25 08:24:11 nkeynes Exp $
     3  *
     4  * CDI CD-image file support
     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 cdi_H
    20 #define cdi_H 1
    22 #ifdef __cplusplus
    23 extern "C" {
    24 #if 0
    25 }
    26 #endif
    27 #endif
    29 #include <stdio.h>
    31 typedef struct cdi_handle *cdi_t;
    33 cdi_t cdi_open( char *filename );
    35 #ifdef __cplusplus
    36 }
    37 #endif
    39 #endif
.