2009-05-21 17:48:31 +02:00
|
|
|
/* gameplaySP
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Exophase <exophase@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VIDEO_H
|
|
|
|
#define VIDEO_H
|
|
|
|
|
2014-12-11 19:12:09 +01:00
|
|
|
void update_scanline(void);
|
2021-08-15 23:27:04 +02:00
|
|
|
void video_reload_counters(void);
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
extern s32 affine_reference_x[2];
|
|
|
|
extern s32 affine_reference_y[2];
|
|
|
|
|
2015-04-13 03:43:42 +02:00
|
|
|
extern u16* gba_screen_pixels;
|
2014-12-09 00:17:28 +01:00
|
|
|
|
2009-05-21 17:48:31 +02:00
|
|
|
#endif
|