mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
d3d895f5ba
* make texture filter a runtime setting * only init texture pipelines if the primitive is actually textured * don't init_pipelines constantly, only when necessary * these are declared elsewhere so no need to do it here, too * cleanups courtesy of r5 * flip logic to be more intuitive * switch back to temporary var
25 lines
432 B
C
25 lines
432 B
C
#ifndef __LIBRETRO_CBS_H
|
|
#define __LIBRETRO_CBS_H
|
|
|
|
#include <boolean.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern bool content_is_pal;
|
|
extern retro_video_refresh_t video_cb;
|
|
extern retro_environment_t environ_cb;
|
|
extern uint8_t widescreen_hack;
|
|
extern uint8_t psx_gpu_upscale_shift;
|
|
extern int lineRenderMode;
|
|
extern int filter_mode;
|
|
extern bool opaque_check;
|
|
extern bool semitrans_check;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|