Skip to content
Snippets Groups Projects
  1. Aug 27, 2022
  2. Aug 26, 2022
  3. Aug 24, 2022
  4. Aug 23, 2022
  5. Aug 22, 2022
  6. Aug 21, 2022
  7. Aug 20, 2022
  8. Aug 19, 2022
    • 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. Aug 18, 2022
  10. Aug 16, 2022
  11. Aug 15, 2022
Loading