1. 27 Aug, 2022 3 commits
  2. 26 Aug, 2022 2 commits
  3. 24 Aug, 2022 2 commits
  4. 23 Aug, 2022 4 commits
  5. 22 Aug, 2022 1 commit
  6. 21 Aug, 2022 6 commits
  7. 20 Aug, 2022 7 commits
  8. 19 Aug, 2022 4 commits
    • Kyle Kienapfel's avatar
      code: dodge PAGE_SIZE #define · 14e9de66
      Kyle Kienapfel authored
      Some header files, specifically for OSX and Musl libc define PAGE_SIZE to be a number
      This is great except in yuzu we're using PAGE_SIZE as a variable
      
      Specific example
      `static constexpr u64 PAGE_SIZE = u64(1) << PAGE_BITS;`
      
      PAGE_SIZE PAGE_BITS PAGE_MASK are all similar variables.
      Simply deleted the underscores, and then added YUZU_ prefix
      
      Might be worth noting that there are multiple uses in different classes/namespaces
      This list may not be exhaustive
      
      Core::Memory   12 bits (4096)
      QueryCacheBase 12 bits
      ShaderCache    14 bits (16384)
      TextureCache   20 bits (1048576, or 1MB)
      
      Fixes #8779
      14e9de66
    • bunnei's avatar
      Merge pull request #8791 from liamwhite/r16g16b16x16 · e9b7263c
      bunnei authored
      video_core: implement R16G16B16X16 texture format
      e9b7263c
    • Liam's avatar
      video_core: implement R16G16B16X16 texture format · c5c42591
      Liam authored
      c5c42591
    • Liam's avatar
      core/file_sys: fix BuildId padding · 39cf6abd
      Liam authored
      39cf6abd
  9. 18 Aug, 2022 2 commits
  10. 16 Aug, 2022 2 commits
  11. 15 Aug, 2022 7 commits