GLES2N64: Enabled Framebuffer (and lowres) rendering
[mupen64plus-pandora.git] / source / gles2n64 / src / gles2N64.h
CommitLineData
34cf4058 1#ifndef GLN64_H
2#define GLN64_H
3
4#include "m64p_config.h"
5#include "stdio.h"
6
7
8#ifndef min
9#define min(a,b) ((a) < (b) ? (a) : (b))
10#endif
11
12//#define DEBUG
13
14#define PLUGIN_NAME "gles2n64"
15#define PLUGIN_VERSION 0x000005
16#define PLUGIN_API_VERSION 0x020200
17
18extern ptr_ConfigGetSharedDataFilepath ConfigGetSharedDataFilepath;
19
20extern void (*CheckInterrupts)( void );
21extern void (*renderCallback)();
22
23
24#endif
25