Skip to content
Snippets Groups Projects
  1. Nov 18, 2018
  2. Nov 13, 2018
  3. Nov 12, 2018
  4. Nov 06, 2018
  5. Nov 04, 2018
  6. Nov 03, 2018
  7. Oct 30, 2018
  8. Oct 24, 2018
  9. Oct 23, 2018
  10. Oct 17, 2018
  11. Oct 15, 2018
  12. Oct 13, 2018
    • Lioncash's avatar
      filesystem: Make CreateFactories() and InstallInterface() take a VfsFilesystem... · 0149162d
      Lioncash authored
      filesystem: Make CreateFactories() and InstallInterface() take a VfsFilesystem instance by reference
      
      Neither of these functions alter the ownership of the provided pointer,
      so we can simply make the parameters a reference rather than a direct
      shared pointer alias. This way we also disallow passing incorrect memory values like
      nullptr.
      0149162d
    • Lioncash's avatar
      yuzu/main: Simplify OnMenuLoadFile() · a4c57436
      Lioncash authored
      We can utilize QStringList's join() function to perform all of the
      appending in a single function call.
      
      While we're at it, make the extension list a single translatable string
      and add a disambiguation comment to explain to translators what %1
      actually is.
      a4c57436
    • Lioncash's avatar
      yuzu/main: Apply the [[maybe_unused]] attribute to the parameter of SetDiscordEnabled() · 53a02214
      Lioncash authored
      Depending on whether or not USE_DISCORD_PRESENCE is defined, the "state"
      parameter can be used or unused. If USE_DISCORD_PRESENCE is not defined,
      the parameter will be considered unused, which can lead to compiler
      warnings. So, we can explicitly mark it with [[maybe_unused]] to inform
      the compiler that this is intentional.
      53a02214
  13. Oct 07, 2018
  14. Oct 06, 2018
  15. Oct 02, 2018
  16. Sep 30, 2018
    • Lioncash's avatar
      kernel/process: Make data member variables private · cf9d6c6f
      Lioncash authored
      Makes the public interface consistent in terms of how accesses are done
      on a process object. It also makes it slightly nicer to reason about the
      logic of the process class, as we don't want to expose everything to
      external code.
      cf9d6c6f
  17. Sep 27, 2018
  18. Sep 26, 2018
  19. Sep 24, 2018
  20. Sep 21, 2018
  21. Sep 15, 2018
  22. Sep 13, 2018
  23. Sep 11, 2018
    • Markus Wick's avatar
      gl_rasterizer: Use ARB_texture_storage. · 3e973bc4
      Markus Wick authored
      It allows us to use texture views and it reduces the overhead within the GPU driver.
      
      But it disallows us to reallocate the texture, but we don't do so anyways.
      
      In the end, it is the new way to allocate textures, so there is no need to use the old way.
      3e973bc4
  24. Sep 09, 2018
Loading