Răsfoiți Sursa

Drop max workers from 8->2 for testing

David Marcec 6 ani în urmă
părinte
comite
2ba195aa0d
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/video_core/renderer_opengl/gl_rasterizer.cpp

+ 1 - 1
src/video_core/renderer_opengl/gl_rasterizer.cpp

@@ -166,7 +166,7 @@ RasterizerOpenGL::RasterizerOpenGL(Core::System& system, Core::Frontend::EmuWind
 
     if (device.UseAsynchronousShaders()) {
         // Max worker threads we should allow
-        constexpr auto MAX_THREADS = 8u;
+        constexpr auto MAX_THREADS = 2u;
         // Amount of threads we should reserve for other parts of yuzu
         constexpr auto RESERVED_THREADS = 6u;
         // Get the amount of threads we can use(this can return zero)