mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
e9d2688c74
- Create VS 2015 files - Fix various compiler and linker errors (not sure if I'm missing some existing work arounds) - Intergate all current operations (CPU currently broken) - Integrate vertex caching - Implement perspective correct texturing - Update command vertices to use floating point positions - Add menu options to toggle modes
23 lines
363 B
C
23 lines
363 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;
|
|
|
|
float video_output_framerate(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|