Просмотр исходного кода

Maxwell3D: only update parameters on High

Fernando Sahmkow 3 лет назад
Родитель
Сommit
56c9730a16
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/video_core/engines/maxwell_3d.cpp

+ 3 - 0
src/video_core/engines/maxwell_3d.cpp

@@ -223,6 +223,9 @@ void Maxwell3D::ProcessMacro(u32 method, const u32* base_start, u32 amount, bool
 }
 
 void Maxwell3D::RefreshParametersImpl() {
+    if (!Settings::IsGPULevelHigh()) {
+        return;
+    }
     size_t current_index = 0;
     for (auto& segment : macro_segments) {
         if (segment.first == 0) {