dosbox-wii/include/video.h

49 lines
1.4 KiB
C
Raw Normal View History

2009-05-02 23:03:37 +02:00
/*
2009-05-02 23:53:27 +02:00
* Copyright (C) 2002-2004 The DOSBox Team
2009-05-02 23:03:37 +02:00
*
* 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __VIDEO_H
#define __VIDEO_H
2009-05-02 23:53:27 +02:00
typedef void (* GFX_ResetCallBack)(void);
2009-05-02 23:35:44 +02:00
2009-05-02 23:03:37 +02:00
struct GFX_PalEntry {
Bit8u r;
Bit8u g;
Bit8u b;
Bit8u unused;
};
2009-05-02 23:53:27 +02:00
#define GFX_HASSCALING 0x0001
#define GFX_HASCONVERT 0x0002
2009-05-02 23:03:37 +02:00
void GFX_Events(void);
void GFX_SetPalette(Bitu start,Bitu count,GFX_PalEntry * entries);
2009-05-02 23:53:27 +02:00
Bitu GFX_GetBestMode(Bitu bpp,Bitu & gfx_flags);
2009-05-02 23:27:47 +02:00
Bitu GFX_GetRGB(Bit8u red,Bit8u green,Bit8u blue);
2009-05-02 23:53:27 +02:00
void GFX_SetSize(Bitu width,Bitu height,Bitu bpp,double scalex,double scaley,GFX_ResetCallBack cb_reset);
2009-05-02 23:03:37 +02:00
void GFX_Start(void);
void GFX_Stop(void);
void GFX_SwitchFullScreen(void);
2009-05-02 23:53:27 +02:00
bool GFX_StartUpdate(Bit8u * & pixels,Bitu & pitch);
void GFX_EndUpdate(void);
2009-05-02 23:27:47 +02:00
2009-05-02 23:03:37 +02:00
#endif