|
|
|
@ -859,10 +859,12 @@ namespace SohImGui {
|
|
|
|
|
|
|
|
|
|
if (ImGui::BeginMenu("Graphics"))
|
|
|
|
|
{
|
|
|
|
|
#ifndef __APPLE__
|
|
|
|
|
EnhancementSliderFloat("Internal Resolution: %d %%", "##IMul", "gInternalResolution", 0.5f, 2.0f, "", 1.0f, true);
|
|
|
|
|
Tooltip("Multiplies your output resolution by the value inputted,\nas a more intensive but effective form of anti-aliasing");
|
|
|
|
|
gfx_current_dimensions.internal_mul = CVar_GetFloat("gInternalResolution", 1);
|
|
|
|
|
EnhancementSliderInt("MSAA: %d", "##IMSAA", "gMSAAValue", 1, 8, "");
|
|
|
|
|
#endif
|
|
|
|
|
EnhancementSliderInt("MSAA: %d", "##IMSAA", "gMSAAValue", 1, 8, "", 1, true);
|
|
|
|
|
Tooltip("Activates multi-sample anti-aliasing when above 1x\nup to 8x for 8 samples for every pixel");
|
|
|
|
|
gfx_msaa_level = CVar_GetS32("gMSAAValue", 1);
|
|
|
|
|
|
|
|
|
|