1. 09 Apr, 2021 7 commits
  2. 08 Apr, 2021 6 commits
  3. 07 Apr, 2021 21 commits
  4. 05 Apr, 2021 3 commits
  5. 04 Apr, 2021 3 commits
    • LC's avatar
      Merge pull request #6141 from lat9nq/cfg_gphcs_stack_use · 7feb490f
      LC authored
      configure_graphics: Prevent stack-use-after-scope
      7feb490f
    • Markus Wick's avatar
      common: Move assert failure handling into a cpp file. · 9be819fa
      Markus Wick authored
      Advantage: Altering the handler does not need a full recompilation.
      Disadvantage: noreturn is droped, so the caller is a bit slower.
      
      We quite often run yuzu with a YOLO assertion handler. In fact, only very few
      games run at all with asserts. This patch allows developers to patch the handler
      without recompiling everything. The overhead of the missing "noreturn" attribute
      shoul be negletable.
      9be819fa
    • lat9nq's avatar
      configure_graphics: Prevent stack-use-after-scope · 33ed02a2
      lat9nq authored
      Address Sanitizer reports stack-use-after-scope on line 231
      `vulkan_devices.push_back(QString::fromStdString(name));`. Instead of
      using a pointer, copy the string into a std::string and use that,
      instead.
      33ed02a2