1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Allow multisampling

It's currently broken though
This commit is contained in:
Francisco Zurita 2017-02-11 10:08:31 -05:00 committed by Sergey Lipskiy
parent 0e8e71639b
commit 86d33b24c0

View File

@ -211,12 +211,7 @@ void Config_LoadConfig()
config.video.cropMode = ConfigGetParamInt(g_configVideoGliden64, "CropMode");
config.video.cropWidth = ConfigGetParamInt(g_configVideoGliden64, "CropWidth");
config.video.cropHeight = ConfigGetParamInt(g_configVideoGliden64, "CropHeight");
#ifdef GL_MULTISAMPLING_SUPPORT
config.video.multisampling = ConfigGetParamInt(g_configVideoGliden64, "MultiSampling");
#else
config.video.multisampling = 0;
#endif
config.frameBufferEmulation.aspect = ConfigGetParamInt(g_configVideoGliden64, "AspectRatio");
config.frameBufferEmulation.bufferSwapMode = ConfigGetParamInt(g_configVideoGliden64, "BufferSwapMode");
config.frameBufferEmulation.nativeResFactor = ConfigGetParamInt(g_configVideoGliden64, "UseNativeResolutionFactor");