Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glitch64/m64p.h
2 views
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
29
extern ptr_ConfigOpenSection ConfigOpenSection;
30
extern ptr_ConfigGetParamInt ConfigGetParamInt;
31
extern ptr_ConfigGetParamBool ConfigGetParamBool;
32
33
extern ptr_VidExt_Init CoreVideo_Init;
34
extern ptr_VidExt_Quit CoreVideo_Quit;
35
extern ptr_VidExt_ListFullscreenModes CoreVideo_ListFullscreenModes;
36
extern ptr_VidExt_SetVideoMode CoreVideo_SetVideoMode;
37
extern ptr_VidExt_SetCaption CoreVideo_SetCaption;
38
extern ptr_VidExt_ToggleFullScreen CoreVideo_ToggleFullScreen;
39
extern ptr_VidExt_GL_GetProcAddress CoreVideo_GL_GetProcAddress;
40
extern ptr_VidExt_GL_SetAttribute CoreVideo_GL_SetAttribute;
41
extern ptr_VidExt_GL_SwapBuffers CoreVideo_GL_SwapBuffers;
42
43
#endif
44
45