| version 1.1 | | version 1.2 |
|---|
| | |
| * Prototypes for C versions of texture mapped scanlines. | | * Prototypes for C versions of texture mapped scanlines. |
| * | | * |
| * $Log$ | | * $Log$ |
| * Revision 1.1 1999/06/14 22:14:10 donut | | * Revision 1.2 1999/12/08 01:03:51 donut |
| * Initial revision | | * allow runtime selection of tmap routines |
| | | * |
| | | * Revision 1.1.1.1 1999/06/14 22:14:10 donut |
| | | * Import of d1x 1.37 source. |
| * | | * |
| * Revision 1.2 1995/02/20 18:23:40 john | | * Revision 1.2 1995/02/20 18:23:40 john |
| * Added new module for C versions of inner loops. | | * Added new module for C versions of inner loops. |
| | |
| extern void c_tmap_scanline_lin_nolight(); | | extern void c_tmap_scanline_lin_nolight(); |
| extern void c_tmap_scanline_flat(); | | extern void c_tmap_scanline_flat(); |
| extern void c_tmap_scanline_shaded(); | | extern void c_tmap_scanline_shaded(); |
| | | |
| | | //typedef struct _tmap_scanline_funcs { |
| | | extern void (*cur_tmap_scanline_per)(void); |
| | | extern void (*cur_tmap_scanline_per_nolight)(void); |
| | | extern void (*cur_tmap_scanline_lin)(void); |
| | | extern void (*cur_tmap_scanline_lin_nolight)(void); |
| | | extern void (*cur_tmap_scanline_flat)(void); |
| | | extern void (*cur_tmap_scanline_shaded)(void); |
| | | //} tmap_scanline_funcs; |
| | | |
| | | //extern tmap_scanline_funcs tmap_funcs; |
| | | void select_tmap(char *type); |
| | | |
| #endif | | #endif |
| | | |