mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-02 14:25:43 -04:00
libretro: Expose bilinear texture filtering option
This commit is contained in:
parent
9963bde034
commit
5df116b608
@ -352,7 +352,7 @@ void LibretroHostInterface::OnSystemDestroyed()
|
|||||||
m_using_hardware_renderer = false;
|
m_using_hardware_renderer = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::array<retro_core_option_definition, 28> s_option_definitions = {{
|
static std::array<retro_core_option_definition, 29> s_option_definitions = {{
|
||||||
{"Console.Region",
|
{"Console.Region",
|
||||||
"Console Region",
|
"Console Region",
|
||||||
"Determines which region/hardware to emulate. Auto-Detect will use the region of the disc inserted.",
|
"Determines which region/hardware to emulate. Auto-Detect will use the region of the disc inserted.",
|
||||||
@ -448,6 +448,12 @@ static std::array<retro_core_option_definition, 28> s_option_definitions = {{
|
|||||||
"others will break.",
|
"others will break.",
|
||||||
{{"true", "Enabled"}, {"false", "Disabled"}},
|
{{"true", "Enabled"}, {"false", "Disabled"}},
|
||||||
"false"},
|
"false"},
|
||||||
|
{"GPU.TextureFiltering",
|
||||||
|
"Bilinear Texture Filtering",
|
||||||
|
"Smooths out the blockyness of magnified textures on 3D object by using bilinear filtering. Will have a "
|
||||||
|
"greater effect on higher resolution scales. Only applies to the hardware renderers.",
|
||||||
|
{{"true", "Enabled"}, {"false", "Disabled"}},
|
||||||
|
"false"},
|
||||||
{"GPU.WidescreenHack",
|
{"GPU.WidescreenHack",
|
||||||
"Widescreen Hack",
|
"Widescreen Hack",
|
||||||
"Increases the field of view from 4:3 to 16:9 in 3D games. For 2D games, or games which use pre-rendered "
|
"Increases the field of view from 4:3 to 16:9 in 3D games. For 2D games, or games which use pre-rendered "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user