Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libmupen64plus/mupen64plus-video-jabo/main.h
2 views
1
/* version info */
2
#define PLUGIN_NAME "Jabo Direct3D8 wrapper for Mupen64Plus"
3
#define PLUGIN_VERSION 0x020000
4
#define VIDEO_PLUGIN_API_VERSION 0x020200
5
#define CONFIG_API_VERSION 0x020000
6
#define VIDEXT_API_VERSION 0x030000
7
#define CONFIG_PARAM_VERSION 1.00
8
9
#define VERSION_PRINTF_SPLIT(x) (((x) >> 16) & 0xffff), (((x) >> 8) & 0xff), ((x) & 0xff)
10
11
typedef struct {
12
int anisotropic_level;
13
int brightness;
14
int antialiasing_level;
15
BOOL super2xsal;
16
BOOL texture_filter;
17
BOOL adjust_aspect_ratio;
18
BOOL legacy_pixel_pipeline;
19
BOOL alpha_blending;
20
// BOOL wireframe;
21
BOOL direct3d_transformation_pipeline;
22
BOOL z_compare;
23
BOOL copy_framebuffer;
24
int resolution_width;
25
int resolution_height;
26
int clear_mode;
27
} SETTINGS;
28