N64: Forgot the antialiasing level setting
This commit is contained in:
parent
e86448c825
commit
a5d57a5a4f
|
@ -44,6 +44,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
[Description("Anisotropic filtering level")]
|
||||
public ANISOTROPIC_FILTERING_LEVEL anisotropic_level { get; set; }
|
||||
|
||||
[DefaultValue(ANTIALIASING_LEVEL.Off)]
|
||||
[DisplayName("Full-Scene Antialiasing")]
|
||||
[Description("Full-Scene Antialiasing level")]
|
||||
public ANTIALIASING_LEVEL antialiasing_level { get; set; }
|
||||
|
||||
[DefaultValue(100)]
|
||||
[DisplayName("Brightness")]
|
||||
[Description("Brightness level, 100%-190%")]
|
||||
|
@ -127,6 +132,21 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
SixteenTimes = 4
|
||||
}
|
||||
|
||||
public enum ANTIALIASING_LEVEL
|
||||
{
|
||||
[Description("Off")]
|
||||
Off = 0,
|
||||
|
||||
[Description("2X")]
|
||||
TwoTimes = 1,
|
||||
|
||||
[Description("4X")]
|
||||
FourTimes = 2,
|
||||
|
||||
[Description("8X")]
|
||||
EightTimes = 3
|
||||
}
|
||||
|
||||
public enum Direct3DClearMode
|
||||
{
|
||||
[Description("Default")]
|
||||
|
|
Loading…
Reference in New Issue