filename | src/video.h |
changeset | 31:495e480360d7 |
prev | 1:eea311cfd33e |
next | 65:9f124c245fc6 |
author | nkeynes |
date | Mon Dec 26 11:47:15 2005 +0000 (15 years ago) |
permissions | -rw-r--r-- |
last change | Add sh4 + arm breakpoints Hook up break button in GUI Enable ARM slice in main loop |
view | annotate | diff | log | raw |
1 /**
2 * $Id: video.h,v 1.2 2005-12-25 08:24:07 nkeynes Exp $
3 *
4 * The PC side of the video support (responsible for actually displaying /
5 * rendering frames)
6 *
7 * Copyright (c) 2005 Nathan Keynes.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
20 #ifndef dream_video_H
21 #define dream_video_H
23 #include <stdint.h>
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 void video_open( void );
30 void video_update_frame( void );
31 void video_update_size( int, int, int );
33 extern char *video_data;
35 #ifdef __cplusplus
36 }
37 #endif
38 #endif
.