Glide Plugin GLES2 port from mupen64plus-ae, but with special FrameSkip code
[mupen64plus-pandora.git] / source / gles2glide64 / src / Glitch64 / m64p.h
CommitLineData
98e75f2d 1/******************************************************************************
2 * Glide64 - Glide video plugin for Nintendo 64 emulators.
3 * http://bitbucket.org/wahrhaft/mupen64plus-video-glide64/
4 *
5 * Copyright (C) 2010 Jon Ring
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 *****************************************************************************/
21
22#ifndef M64P_H
23#define M64P_H
24
25#include "m64p_types.h"
26#include "m64p_config.h"
27#include "m64p_vidext.h"
28
29extern ptr_ConfigOpenSection ConfigOpenSection;
30extern ptr_ConfigGetParamInt ConfigGetParamInt;
31extern ptr_ConfigGetParamBool ConfigGetParamBool;
32
33extern ptr_VidExt_Init CoreVideo_Init;
34extern ptr_VidExt_Quit CoreVideo_Quit;
35extern ptr_VidExt_ListFullscreenModes CoreVideo_ListFullscreenModes;
36extern ptr_VidExt_SetVideoMode CoreVideo_SetVideoMode;
37extern ptr_VidExt_SetCaption CoreVideo_SetCaption;
38extern ptr_VidExt_ToggleFullScreen CoreVideo_ToggleFullScreen;
39extern ptr_VidExt_GL_GetProcAddress CoreVideo_GL_GetProcAddress;
40extern ptr_VidExt_GL_SetAttribute CoreVideo_GL_SetAttribute;
41extern ptr_VidExt_GL_SwapBuffers CoreVideo_GL_SwapBuffers;
42
43#endif