mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Config: Expose Default and 1x Anisotropic Filtering setting.
This commit is contained in:
parent
4b711e1e0a
commit
561aee7707
8 changed files with 38 additions and 21 deletions
|
@ -55,6 +55,16 @@ enum class TextureFilteringMode : int
|
|||
Linear,
|
||||
};
|
||||
|
||||
enum class AnisotropicFilteringMode : int
|
||||
{
|
||||
Default = -1,
|
||||
Force1x = 0,
|
||||
Force2x = 1,
|
||||
Force4x = 2,
|
||||
Force8x = 3,
|
||||
Force16x = 4,
|
||||
};
|
||||
|
||||
enum class OutputResamplingMode : int
|
||||
{
|
||||
Default,
|
||||
|
@ -202,7 +212,7 @@ struct VideoConfig final
|
|||
int iEFBScale = 0;
|
||||
TextureFilteringMode texture_filtering_mode = TextureFilteringMode::Default;
|
||||
OutputResamplingMode output_resampling_mode = OutputResamplingMode::Default;
|
||||
int iMaxAnisotropy = 0;
|
||||
AnisotropicFilteringMode iMaxAnisotropy = AnisotropicFilteringMode::Default;
|
||||
std::string sPostProcessingShader;
|
||||
bool bForceTrueColor = false;
|
||||
bool bDisableCopyFilter = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue