Browse Source

Maxwell3D: only update parameters on High

pull/15/merge
Fernando Sahmkow 3 years ago
parent
commit
56c9730a16
  1. 3
      src/video_core/engines/maxwell_3d.cpp

3
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) {

Loading…
Cancel
Save