mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Don't show ffmpeg_fft_ core options when HAVE_OPENGL is not defined
This commit is contained in:
parent
5f6f630818
commit
c4c96aa843
@ -272,10 +272,10 @@ void CORE_PREFIX(retro_set_environment)(retro_environment_t cb)
|
|||||||
static const struct retro_variable vars[] = {
|
static const struct retro_variable vars[] = {
|
||||||
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES)
|
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES)
|
||||||
{ "ffmpeg_temporal_interp", "Temporal Interpolation; enabled|disabled" },
|
{ "ffmpeg_temporal_interp", "Temporal Interpolation; enabled|disabled" },
|
||||||
#endif
|
|
||||||
#ifdef HAVE_GL_FFT
|
#ifdef HAVE_GL_FFT
|
||||||
{ "ffmpeg_fft_resolution", "GLFFT Resolution; 1280x720|1920x1080|640x360|320x180" },
|
{ "ffmpeg_fft_resolution", "GLFFT Resolution; 1280x720|1920x1080|640x360|320x180" },
|
||||||
{ "ffmpeg_fft_multisample", "GLFFT Multisample; 1x|2x|4x" },
|
{ "ffmpeg_fft_multisample", "GLFFT Multisample; 1x|2x|4x" },
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
{ "ffmpeg_color_space", "Colorspace; auto|BT.709|BT.601|FCC|SMPTE240M" },
|
{ "ffmpeg_color_space", "Colorspace; auto|BT.709|BT.601|FCC|SMPTE240M" },
|
||||||
{ NULL, NULL },
|
{ NULL, NULL },
|
||||||
@ -343,7 +343,6 @@ static void check_variables(void)
|
|||||||
else if (!strcmp(var.value, "disabled"))
|
else if (!strcmp(var.value, "disabled"))
|
||||||
temporal_interpolation = false;
|
temporal_interpolation = false;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_GL_FFT
|
#ifdef HAVE_GL_FFT
|
||||||
fft_var.key = "ffmpeg_fft_resolution";
|
fft_var.key = "ffmpeg_fft_resolution";
|
||||||
@ -365,6 +364,7 @@ static void check_variables(void)
|
|||||||
|
|
||||||
if (CORE_PREFIX(environ_cb)(RETRO_ENVIRONMENT_GET_VARIABLE, &fft_ms_var) && fft_ms_var.value)
|
if (CORE_PREFIX(environ_cb)(RETRO_ENVIRONMENT_GET_VARIABLE, &fft_ms_var) && fft_ms_var.value)
|
||||||
fft_multisample = strtoul(fft_ms_var.value, NULL, 0);
|
fft_multisample = strtoul(fft_ms_var.value, NULL, 0);
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
color_var.key = "ffmpeg_color_space";
|
color_var.key = "ffmpeg_color_space";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user