mirror of https://github.com/PCSX2/pcsx2.git
GS: Remove AA1 gui condition, it will always be enabled.
This commit is contained in:
parent
06c9967971
commit
5a13932dd9
|
@ -902,11 +902,6 @@ void GSRenderer::KeyEvent(const HostKeyEvent& e)
|
|||
theApp.SetConfig("deinterlace", static_cast<int>(GSConfig.InterlaceMode));
|
||||
printf("GS: Set deinterlace mode to %d (%s).\n", static_cast<int>(GSConfig.InterlaceMode), theApp.m_gs_deinterlace.at(static_cast<int>(GSConfig.InterlaceMode)).name.c_str());
|
||||
return;
|
||||
case VK_DELETE:
|
||||
GSConfig.AA1 = !GSConfig.AA1;
|
||||
theApp.SetConfig("aa1", GSConfig.AA1);
|
||||
printf("GS: (Software) Edge anti-aliasing is now %s.\n", GSConfig.AA1 ? "enabled" : "disabled");
|
||||
return;
|
||||
case VK_NEXT: // As requested by Prafull, to be removed later
|
||||
char dither_msg[3][16] = {"disabled", "auto", "auto unscaled"};
|
||||
GSConfig.Dithering = (GSConfig.Dithering + 1) % 3;
|
||||
|
|
|
@ -4042,7 +4042,7 @@ bool GSRendererHW::SwPrimRender()
|
|||
gd.sel.pabe = 1;
|
||||
}
|
||||
|
||||
if (GSConfig.AA1 && PRIM->AA1 && (primclass == GS_LINE_CLASS || primclass == GS_TRIANGLE_CLASS))
|
||||
if (PRIM->AA1 && (primclass == GS_LINE_CLASS || primclass == GS_TRIANGLE_CLASS))
|
||||
{
|
||||
gd.sel.aa1 = 1;
|
||||
}
|
||||
|
|
|
@ -1250,7 +1250,7 @@ bool GSRendererSW::GetScanlineGlobalData(SharedData* data)
|
|||
gd.sel.pabe = 1;
|
||||
}
|
||||
|
||||
if (GSConfig.AA1 && PRIM->AA1 && (primclass == GS_LINE_CLASS || primclass == GS_TRIANGLE_CLASS))
|
||||
if (PRIM->AA1 && (primclass == GS_LINE_CLASS || primclass == GS_TRIANGLE_CLASS))
|
||||
{
|
||||
gd.sel.aa1 = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue