beetle-psx-libretro/libretro_cbs.h
hizzlekizzle d3d895f5ba
[squash and merge] runtime update for vulkan texture filtures (#417)
* 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
2018-09-01 17:44:42 -05:00

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