1. 23 Jul, 2018 4 commits
  2. 22 Jul, 2018 34 commits
  3. 21 Jul, 2018 2 commits
    • Subv's avatar
      GPU: Implement the NVGPU_IOCTL_CHANNEL_KICKOFF_PB ioctl2 command. · 5c49e56d
      Subv authored
      This behaves quite similarly to the SubmitGPFIFO command. Referenced from Ryujinx.
      Many thanks to @gdkchan for investigating this!
      5c49e56d
    • Lioncash's avatar
      file_util: Use an enum class for GetUserPath() · d66b43da
      Lioncash authored
      Instead of using an unsigned int as a parameter and expecting a user to
      always pass in the correct values, we can just convert the enum into an
      enum class and use that type as the parameter type instead, which makes
      the interface more type safe.
      
      We also get rid of the bookkeeping "NUM_" element in the enum by just
      using an unordered map. This function is generally low-frequency in
      terms of calls (and I'd hope so, considering otherwise would mean we're
      slamming the disk with IO all the time) so I'd consider this acceptable
      in this case.
      d66b43da