mirror of
https://github.com/libretro/RetroArch
synced 2025-02-11 06:40:48 +00:00
vfilter is for Wii/Gekko only
This commit is contained in:
parent
e243614db8
commit
e880a3b248
@ -468,8 +468,10 @@ static const bool video_shared_context = false;
|
|||||||
/* Sets GC/Wii screen width. */
|
/* Sets GC/Wii screen width. */
|
||||||
static const unsigned video_viwidth = 640;
|
static const unsigned video_viwidth = 640;
|
||||||
|
|
||||||
|
#ifdef GEKKO
|
||||||
/* Removes 480i flicker, smooths picture a little. */
|
/* Removes 480i flicker, smooths picture a little. */
|
||||||
static const bool video_vfilter = true;
|
static const bool video_vfilter = true;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Smooths picture. */
|
/* Smooths picture. */
|
||||||
static const bool video_smooth = true;
|
static const bool video_smooth = true;
|
||||||
|
@ -102,9 +102,13 @@ typedef struct video_info
|
|||||||
* kind of publicly accessible driver implementation
|
* kind of publicly accessible driver implementation
|
||||||
* video struct for specific things like this.
|
* video struct for specific things like this.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Wii-specific settings. Ignored for everything else. */
|
||||||
unsigned viwidth;
|
unsigned viwidth;
|
||||||
#endif
|
|
||||||
bool vfilter;
|
bool vfilter;
|
||||||
|
#endif
|
||||||
|
/* If true, applies bilinear filtering to the image,
|
||||||
|
* otherwise nearest filtering. */
|
||||||
bool smooth;
|
bool smooth;
|
||||||
/* Maximum input size: RARCH_SCALE_BASE * input_scale */
|
/* Maximum input size: RARCH_SCALE_BASE * input_scale */
|
||||||
unsigned input_scale;
|
unsigned input_scale;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user